multipage_form_example_menu
developer/examples/multipage_form_example.module, строка 19
- Версии
- 5 – 6
multipage_form_example_menu($may_cache)
Реализация hook_menu()
.
Код
<?php
function multipage_form_example_menu($may_cache) {
$items = array();
if (!$may_cache) {
$items[] = array('title' => t('multipage form example'),
'path' => 'node/add/multipage_form_example',
'access' => TRUE,
);
}
return $items;
}
?>
Войдите или зарегистрируйтесь, чтобы получить возможность отправлять комментарии