Lets print hello world on a page. Add this to helloworld.module
// calling hook_menu() function helloworld_menu() { $menu[‘hello/world'] = array( 'title' => ‘Hello World Simple Page', 'page callback' => ‘helloworld_worldview’, // this is the function underneath 'access callback' => TRUE, ); return $menu; } functionhelloworld_worldview() { return ‘Hello World !'; }
No comments:
Post a Comment