function tableform_example_menu in Tableform 7
Implementation of hook_menu();
File
- tableform_example/
tableform_example.module, line 10
Code
function tableform_example_menu() {
$items['tableform_example'] = array(
'page callback' => 'drupal_get_form',
'page arguments' => array(
'tableform_example_form',
),
'access arguments' => array(
'access content',
),
'title' => 'Tableform Example Form',
);
return $items;
}