DrupalBin
Submit Code
About
Recent Posts
Code
2 hours 2 min
ago
Fix for my user handler
2 hours 25 min
ago
Fix for my user handler
2 hours 28 min
ago
my user handler
4 hours 17 min
ago
more
Tags
CCK
fapi
javascript
jquery
menu
module
Panels
simpletest
template.php
test
theme
views
more tags
User login
Log in using OpenID:
What is OpenID?
Username:
*
Password:
*
Create new account
Request new password
Log in using OpenID
Cancel OpenID login
Home
drupal6
AHAH FAPI Callback Helper
April 10, 2008 - 6:35pm —
Wim Leers
// Example usage. This is an AHAH callback function.
function
mymodule_ahah
(
)
{
// Update the form and render only the wrapper inside the "Refund Settings"
// fieldset.
ahah
drupal6
fapi
Read more
AHAH helper - not yet working
April 10, 2008 - 6:18pm —
Wim Leers
<?php
function
&ahah_helper_get_form_element
(
$form
,
$parents
)
{
// Allow $parents to be either an array of the element's parents or the name
// of an element.
ahah
drupal6
fapi
Read more
maybe a problem with accents on drupal 6 for theme-settings.php
February 21, 2008 - 10:34am — Anonymous
/**
* template.php
*/
<?php
/*
* Initialize theme settings
*/
if
(
is_null
(
theme_get_setting
(
'who_we_are_title'
)
)
)
{
global
$theme_key
;
/*
drupal6
template.php
theme-settings.php
Read more
Fix for maybe a problem with accents on drupal 6 for theme-settings.php
February 21, 2008 - 10:29am — Anonymous
/**
* template.php
*/
<?php
/*
* Initialize theme settings
*/
if
(
is_null
(
theme_get_setting
(
'who_we_are_title'
)
)
)
{
global
$theme_key
;
/*
drupal6
template.php
theme-settings.php
Read more
Fix for maybe a problem with accents on drupal 6 for theme-settings.php
February 21, 2008 - 10:25am — Anonymous
/**
* template.php
*/
<?php
/*
* Initialize theme settings
*/
if
(
is_null
(
theme_get_setting
(
'quem_somos_title'
)
)
)
{
global
$theme_key
;
/*
drupal6
template.php
theme-settings.php
Read more
maybe a problem with accents on drupal 6 for theme-settings.php
February 21, 2008 - 10:04am — Anonymous
/**
* template.php
*/
<?php
/*
* Initialize theme settings
*/
if
(
is_null
(
theme_get_setting
(
'quem_somos_title'
)
)
)
{
global
$theme_key
;
/*
drupal6
template.php
theme-settings.php
Read more
live blogging
February 13, 2008 - 4:06pm — Anonymous
Amy Stephen
http://opensourcecommunity.org/2008/02/13/drupal-6-has-been-released
Trevor Twining
http://www.trevortwining.com/content/drupal-6-released-drupalistas-celebrate
Laura V
drupal6
Read more
menu access hook
November 2, 2007 - 12:30pm — Anonymous
function
menu_access_invoke_all
(
)
{
$args
=
func_get_args
(
)
;
$hook
=
$args
[
0
]
;
unset
(
$args
[
0
]
)
;
$return
=
TRUE
;
foreach
(
module_implements
(
$hook
)
as
$module
)
{
drupal6
menu
Read more