name = Luna Menu
description = Luna Menu Provide Demo For This One
core = 7.x
version = 1.2
package = Lunar
description = Luna Menu Provide Demo For This One
core = 7.x
version = 1.2
package = Lunar
This is the module file: luna.module
<?php
/**
* Implements hook_menu()
*/
function luna_menu(){
$items = array();
$items['lunar/main'] = array(
'title' => 'Luna Main',
'page callback' => 'hello',
'page arguments' => array('Good Morning'),
'access callback' => TRUE,
);
return $items;
}
function hello($msg){
return $msg;
}
No comments:
Post a Comment