| Versionen | |
|---|---|
| drupal6 – drupal7 | node_forms() |
Implementation of hook_forms(). All node forms share the same form handler
modules/
<?php
function node_forms() {
$forms = array();
if ($types = node_get_types()) {
foreach (array_keys($types) as $type) {
$forms[$type . '_node_form']['callback'] = 'node_form';
}
}
return $forms;
}
?>
Kommentare
Kommentar hinzufügen