MySQL数据库备份脚本

Drupal学习(1)——菜单

阿债 posted @ 2009年7月22日 00:38 in 未分类 , 1739 阅读
我们打算在菜单中添加一项mymenu,我们使用的是Drupal 5.x版本。 首先,在sites/all/modules/下新建一个目录mymenu,然后在其中建两个文件mymenu.info和mymenu.module。 mymenu.info的内容比较简单,只是模块的信息,给后台管理员看的。例如: ; $Id $ name = "MyMenu Module" description = "Adds a menu to the navigation block." version = "0.01" 重点在mymenu.module文件,入口函数是mymenus_menu,相当于参数配置。 function mymenu_menu($may_cache) { // Create an array to hold the menu items we'll define. $items = array(); if ($may_cache) { // Define a static menu item. $items[] = array( ...

登录 *


loading captcha image...
(输入验证码)
or Ctrl+Enter