| Versions | |
|---|---|
| 4.7 | node_example_menu( |
| 6 – 7 | node_example_menu() |
Implements hook_menu().
We are providing a default page to illustrate the use of our custom node view mode that will live at http://example.com/?q=examples/node_example
examples/
<?php
function node_example_menu() {
$items['examples/node_example'] = array(
'page callback' => 'node_example_page',
'access arguments' => array('access content'),
'title' => 'Node Example',
);
return $items;
}
?>