Drupal 6.x

Bulk menu module - Makes it possible to set many nodes to a selected parent menu item

This module adds a feature to the Drupal content view, admin/content/node, by allowing multiple selected nodes to get the same parent menu. By the same action as you can delete multiple nodes you can via a dropdown box select a parent menu for all selected nodes.

This feature is very nice if you want to move all nodes of a certain type and language, from one menu to another without editing all one by one

A way of hook Drupal pathauto

This is a way, not very nice though, to hook pathauto. It is called when someone view or save the settings of URL alias at admin/build/path/pathauto. The module_invoke_all() is called in the function pathauto_admin_settings(), so this function has to be named "..._pathauto". This is not a ready to use script, even if I have used it on a production site.

drupal_json AHAH jquery

Adding dynamic form elements using AHAH

function qt_more_tabs_submit($form, &$form_state) {
unset($form_state['submit_handlers']);
form_execute_handlers('submit', $form, $form_state);
$quicktabs = $form_state['values'];
$form_state['quicktabs'] = $quicktabs;
$form_state['rebuild'] = TRUE;
if ($form_state['values']['tabs_more']) {
$form_state['qt_count'] = count($form_state['values']['tabs']) + 1;
}
return $quicktabs;
}

$javascript = drupal_add_js(NULL, NULL, 'header');
drupal_json(array(
'status' => TRUE,
'data' => theme('status

Pages