drupal6

AHAH FAPI Callback Helper

  1. // Example usage. This is an AHAH callback function.
  2. function mymodule_ahah() {
  3.   // Update the form and render only the wrapper inside the "Refund Settings"
  4.   // fieldset.

AHAH helper - not yet working

  1. <?php
  2.  
  3. function &ahah_helper_get_form_element($form, $parents) {
  4.   // Allow $parents to be either an array of the element's parents or the name
  5.   // of an element.

maybe a problem with accents on drupal 6 for theme-settings.php

  1. /**
  2. * template.php
  3. */
  4. <?php
  5. /*
  6. * Initialize theme settings
  7. */
  8. if (is_null(theme_get_setting('who_we_are_title'))) {
  9.   global $theme_key;
  10.   /*
  11.  

Fix for maybe a problem with accents on drupal 6 for theme-settings.php

  1. /**
  2. * template.php
  3. */
  4. <?php
  5. /*
  6. * Initialize theme settings
  7. */
  8. if (is_null(theme_get_setting('who_we_are_title'))) {
  9.   global $theme_key;
  10.   /*
  11.  

Fix for maybe a problem with accents on drupal 6 for theme-settings.php

  1. /**
  2. * template.php
  3. */
  4. <?php
  5. /*
  6. * Initialize theme settings
  7. */
  8. if (is_null(theme_get_setting('quem_somos_title'))) {
  9.   global $theme_key;
  10.   /*
  11.  

maybe a problem with accents on drupal 6 for theme-settings.php

  1. /**
  2. * template.php
  3. */
  4. <?php
  5. /*
  6. * Initialize theme settings
  7. */
  8. if (is_null(theme_get_setting('quem_somos_title'))) {
  9.   global $theme_key;
  10.   /*
  11.  

live blogging

  1. Amy Stephen
  2. http://opensourcecommunity.org/2008/02/13/drupal-6-has-been-released
  3.  
  4. Trevor Twining
  5. http://www.trevortwining.com/content/drupal-6-released-drupalistas-celebrate
  6.  
  7. Laura V

menu access hook

  1. function menu_access_invoke_all() {
  2.   $args = func_get_args();
  3.   $hook = $args[0];
  4.   unset($args[0]);
  5.   $return = TRUE;
  6.   foreach (module_implements($hook) as $module) {
Syndicate content