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;
}
?>
Войдите или зарегистрируйтесь, чтобы получить возможность отправлять комментарии

Вход в систему