| Versionen | |
|---|---|
| drupal7 | field_menu() |
Implementation of hook_menu().
modules/
<?php
function field_menu() {
$items = array();
// Callback for AHAH add more buttons.
$items['field/js_add_more'] = array(
'page callback' => 'field_add_more_js',
'access arguments' => array('access content'),
'type' => MENU_CALLBACK,
);
return $items;
}
?>
Kommentare
Kommentar hinzufügen