GMgKe586q6suSQnyqZLlGCooeWM

Pages

Search

Tuesday, February 15, 2011

Simple Menu Hooks

This is the info file: luna.info
name = Luna Menu
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;
}
Share/Bookmark

No comments:

Post a Comment