drupal module 自定义
01
<?php
function mytracer_menu() {
$items = array();
$items['admin/config/mytracer'] = array(
'title' => 'My Tracer',
'description' => 'MY tracer des',
'access callback' => true,
'page callback' => 'mytracer_admin',
);
return $items;
}
//全局变量的使用
function mytracer_admin() {
global $base_path;
global $base_url;
global $user;
$output = '';
$output .='<p>'. $base_path . '</p>';
$output .='<p>'. $base_url . '</p>';
dpm($user);
return $output;
}
02 ,永久变量的使用
function mytracer_admin() {
//定义一个mytracer_setting1 为10
$var1 = variable_get('mytracer_setting1', 10);
$output = '';
$output .= '变量'. $var1;
//把mytracer_setting1值加1
variable_set('mytracer_setting1', $var1+1);
//删除mytracer_setting1变量
//variable_del('mytracer_setting1');
return $mytracer_setting1;
}
03 arg()函数的使用
function mytracer_admin() {
// 使用 arg() 函數实例,返回一个数组
$args = arg();
$output = '';
$output .= '<p>Current url\'s arguments -> ' . implode(', ', $args);
$output .= '<p> arg(1) = ' . arg(1);
$output .= '<p> arg(1) in http://www.google.com/a/b/c = ' . arg(1, 'http://www.google.com/a/b/c');
$output .= '<p> arg(1) in admin/config/mytracer = ' . arg(1, 'admin/config/mytracer');
return $output;
}
04,drupal_set_messag()实例
function mytracer_admin() {
global $user;
$s = format_string('User: "@username" has entered this page',
array('@username' => $user->name));
drupal_set_message($s);
drupal_set_message($s, 'status', false);
return '';
}
05,t函数实例
function mytracer_admin() {
// 使用 t 函數示範
$txt = '<p style="color:red;">A String</p>';
$output = '';
// 以下這二個都叫做 title 的可翻譯字串,因為大小寫不同,其實是二個要翻譯的字串
$output .= '<p>' . t('Title');
$output .= '<p>' . t('title');
//!号直接正常显示
$output .= '<p>' . t('use ! as a placeholder: !str', array('!str' => $txt));
//@ % 过滤html显示 % 斜线重点
$output .= '<p>' . t('use @ as a placeholder: @str', array('@str' => $txt));
$output .= '<p>' . t('use % as a placeholder: %str', array('%str' => $txt));
return $output;
}
06,item_list()函数实例
/* mytraceer 模組的管理介面網頁
*
*/
function mytracer_admin() { // 使用 theme() 函數,並使用 item_list 版型化 global $user; $output = ''; $output .= theme('username', array('account' => $user)); /*
* 1. 這是簡單的寫法
*/
$title = 'An Item List'; $items = array();
$items[] = 'this is line 1';
$items[] = 'this is line 2';
$items[] = 'this is line 3'; // 使用 theme_item_list 時,需要三個資料 (items, title, type, attributes),利用 array 打包起來
$output .= '<p>' . theme('item_list',
array('items' => $items, 'title' => $title, 'type' => 'ol')); /*
* 2. 比較複雜的例子
* 第二列:增加了 class 與 id
* 第三列:增加了下一層的 list
*/
$items = array();
$items[] = 'this is a line';
$items[] = array('this is a line', 'class' => 'a-item', 'id' => 'line-2');
$items[] = array('this is a line', 'children' => array('c1', 'c2', 'c3')); // 使用 theme_item_list 時,需要三個資料 (items, title, type, attributes),利用 array 打包起來
$output .= '<p>' . theme('item_list',
array('items' => $items, 'title' => $title, 'type' => 'ul')); /*
* 3. 常用的方法
* 準備一個 $items 的 array, 並將 list 的各種元素打包起來
*/ // 變數 $items 我們準備提供給 theme('item_link, ...) 進行版型化的輸出
// 在這裡並未指定它的 type, 因此使用預設的 ul (unordered list)
$items = array(
'items' => array(
l('Manage User Accounts', 'admin/people'),
l('Manage Modules', 'admin/modules'),
l('Manage MyTracer', 'admin/config/mytracer'),
),
'title' => 'Useful Management Links',
'attributes' => array('class' => 'management'),
); // 這個 item_list 的例子,我們增加了 attributes 資料, 這個 attributes 是套用在 ul 或 ol 上面
$output .= '<p>' . theme('item_list', $items); return $output;
}
07。使用 theme() 函數,並使用 table 的版型化
/* mytraceer 模組的管理介面網頁
*
*/
function mytracer_admin() { // 使用 theme() 函數,並使用 table 的版型化 $output = ''; /*
* 1. 最簡單的 table 作法
*/ // table 要有 header, 如果某個欄位允許排序的話,要提供 'field' 屬性
$header = array('col 1', 'col 2', 'col 3', 'col 4'); // table 要有 row, 習慣上, 使用 $rows 變數, cell 中如果有其它屬性的話, 該 cell 以 array 方式來定義,
// 並將相關屬性打包進來
$rows = array(
array(
'Cell 11', 'Cell 12', 'Cell 13', 'Cell 14'
),
// Row with attributes on the row and some of its cells.
array(
'Cell 21', 'Cell 22', 'Cell 23', 'Cell 24'
)
); $items = array(
'header' => $header,
'rows' => $rows,
); $output .= '<p>' . theme('table', $items); /*
* 2. 帶有屬性旳 table 作法
*/ // table 要有 header, 如果某個欄位允許排序的話,要提供 'field' 屬性
$header = array('header 1', 'header 2', 'header 3', 'header 4'); // table 要有 row, 習慣上, 使用 $rows 變數, cell 中如果有其它屬性的話, 該 cell 以 array 方式來定義,
// 並將相關屬性打包進來
$rows = array(
// Simple row
array(
'Cell 1', 'Cell 2', 'Cell 3', array('data' => 'Cell 4', 'class' => 'highlight')
),
// Row with attributes on the row and some of its cells.
array(
'data' => array('Cell 1', 'Cell 2', array('data' => 'Cell 3,4', 'colspan' => 2)),
'class' => array('funky')
)
); $output .= '<p><p>' . theme('table', array('header' => $header, 'rows' => $rows)); /*
* 3. 常用的作法
*/ $output .= '<p>' . '<h3>General Table Usage</h3>'; $header = array('標題', '網址', '操作'); // 通常, rows 會由資料庫讀取資料後, 一列一列排出來, 還沒有介紹讀取資料庫之前,
// 我們先使用簡單的一一填入方法 $rows = array(); for ($i=1; $i<4; $i++) {
$node = node_load($i); // node_load(): 載入 id 為 $i 的內容節點 $row = array(); $row[] = $node->title;
$row[] = url('node/' . $i);
$row[] = l('編輯', 'node/' . $i . '/edit'); $rows[] = $row;
} $output .= theme('table', array('header'=>$header, 'rows'=>$rows)); return $output;
}
08.url
function mytracer_admin() {
global $user;
$output = '';
$output .= '<p>' . '1. user 2 的網址是 ' . url('user/' . 2);
$output .= '<p>' . '2. 目前 user 的網址是 ' . url('user/' . $user->uid);
$output .= '<p>' . '3. 目前 user 的網址是 ' . url('user/' . $user->uid,
array('absolute' => true));
$output .= '<p>' . '4. 指向 user 1 的絕對網址,並且提供參數: ' . url('user/1',
array('absolute' => true, 'query' => array('key1' => 'this-value', 'key2' =>10)));
$output .= '<p>' . '5. 指向 google 的外部連結: ' . url('http://www.google.com');
$output .= '<p>' . '6. mytracer 模組的 help 說明在 ' .
url('admin/help', array('fragment' => 'mytracer'));
$output .= '<p>' . '7. 最後, 比較複雜的 url 作法所得到的結果:' .
url('user/' . $user->uid,
array('absolute' => true,
'fragment' => 'part1',
'query' => array('key1' => 'value1', 'key2' => 10),
)
);
return $output;
}
09.watchdog
/* mytraceer 模組的管理介面網頁
*
*/
function mytracer_admin() { // 使用 watchdog() 函數 global $user; dpm($user); watchdog('mytracer', 'current user is @username, id = @id',
array('@username' => $user->name, '@id' => $user->uid)); watchdog('mytracer', 'current user is @username, id = @id',
array('@username' => $user->name, '@id' => $user->uid), WATCHDOG_NOTICE); watchdog('mytracer', 'current user is @username, id = @id',
array('@username' => $user->name, '@id' => $user->uid), WATCHDOG_NOTICE,
l('mytracer 管理', 'admin/config/mytracer')); return '';
}
10.hook_help
function mytracer_help($path, $arg) {
switch ($path) {
case 'admin/settings/mytracer':
return t('The administration menu module provides a dropdown menu arranged for one- or two-click access to most administrative tasks and other common destinations (to users with the proper permissions). Use the settings below to customize the appearance of the menu.');
case 'admin/help#mytracer':
$output = '';
$output .= '<p>' . t('The administration menu module provides a dropdown menu arranged for one- or two-click access to most administrative tasks and other common destinations (to users with the proper permissions). Administration menu also displays the number of anonymous and authenticated users, and allows modules to add their own custom menu items. Integration with the menu varies from module to module; the contributed module <a href="@drupal">Devel</a>, for instance, makes strong use of the administration menu module to provide quick access to development tools.', array('@drupal' => 'http://drupal.org/project/devel')) . '</p>';
$output .= '<p>' . t('The administration menu <a href="@settings">settings page</a> allows you to modify some elements of the menu\'s behavior and appearance. Since the appearance of the menu is dependent on your site theme, substantial customizations require modifications to your site\'s theme and CSS files. See the advanced module README.txt file for more information on theme and CSS customizations.', array('@settings' => url('admin/settings/admin_menu'))) . '</p>';
$output .= '<p>' . t('The menu items displayed in the administration menu depend upon the actual permissions of the viewer. First, the administration menu is only displayed to users in roles with the <em>Access administration menu</em> (admin_menu module) permission. Second, a user must be a member of a role with the <em>Access administration pages</em> (system module) permission to view administrative links. And, third, only currently permitted links are displayed; for example, if a user is not a member of a role with the permissions <em>Administer permissions</em> (user module) and <em>Administer users</em> (user module), the <em>User management</em> menu item is not displayed.') . '</p>';
return $output;
}
}
drupal module 自定义的更多相关文章
- Filebeat Nginx Module 自定义字段
Filebeat Nginx Module 自定义字段 一.修改/usr/local/nginx/conf/nginx.conf中 log_format access '$remote_addr - ...
- drupal 8 ——自定义权限
在项目开发里面,我遇到了这么一个需求,就是对于node的title字段,编辑内容的角色不允许对title进行编辑.title字段是创建内容类型时自动生成的字段,不能在drupal8后台直接配置权限,所 ...
- Drupal Module Hooks
Drupal is a Content Management System. Drupal is also deeply, deeply weird. While systems like Magen ...
- Maven Archetype 多 Module 自定义代码脚手架
大部分公司都会有一个通用的模板项目,帮助你快速创建一个项目.通常,这个项目需要集成一些公司内部的中间件.单元测试.标准的代码格式.通用的代码分层等等. 今天,就利用 Maven 的 Archetype ...
- Drupal中自定义登录页面
通过覆写template定义新的user_login表单来为自定义登录页面.方法: 1. 本站使用的主题是Rorty.来到\sites\all\themes\rorty,打开template.php ...
- spring-boot-关于module自定义jar包打包无法给其他module使用
####世界大坑: 如果仅是使用 <build> <plugins> <plugin> <groupId>org.springframework.boo ...
- Drupal模块的安装方法
Drupal自身的安装很简单,新建一个数据库,然后根据安装提示一步一步做就OK了. 而Drupal可以通过安装各种模块来提供更多定制功能,这些模块的安装方法基本相同,一般来说,就是以下几步: 1) 从 ...
- Drupal Coder 模块远程命令执行分析(SA-CONTRIB-2016-039)
转载请注明文章出处:http://www.cnblogs.com/magic-zero/p/5787181.html 起初看到这个漏洞的时候是在exploit-db上边.地址在这里:https://w ...
- pytorch Containers的Module部分
参考:https://pytorch.org/docs/stable/nn.html Containers Module CLASS torch.nn.Module 所有神经网络模块的基类 你定义的模 ...
随机推荐
- 跟我一起学STL(2)——vector容器详解
一.引言 在上一个专题中,我们介绍了STL中的六大组件,其中容器组件是大多数人经常使用的,因为STL容器是把运用最广的数据结构实现出来,所以我们写应用程序时运用的比较多.然而容器又可以序列式容器和关联 ...
- 深入理解java虚拟机【Java Class类文件结构】
Java语言从诞生之时就宣称一次编写,到处运行的跨平台特性,其实现原理是源码文件并没有直接编译成机器指令,而是编译成Java虚拟机可以识别和运行的字节码文件(Class类文件,*.class),字节码 ...
- Linux 进程
Linux 进程 在用户空间,进程是由进程标识符(PID)表示的.从用户的角度来看,一个 PID 是一个数字值,可惟一标识一个进程.一个 PID 在进程的整个生命期间不会更改,但 PID 可以在进程销 ...
- C# 6.0那些事
这两天期中考试没时间去看Connect();直播,挺可惜的,考完后补看了Connect(); 把C#6.0的新东西总结一下. 自动属性初始化 (Initializers for auto-proper ...
- Windows 10 技术预览
windows10的技术预览版已经发布了很久了,正式版大约在今年的夏天就会发布,作为微软寄予厚望的下一代全平台操作系统,相比于windows8.1,windows10做了哪些改进,又添加了哪些新功能. ...
- DigitalOcean上使用Tornado+MongoDB+Nginx+Supervisor+DnsPod快速搭建个人博客
DigitalOcean 之前买了个便宜的VPS并且在上面搭建了我自己写的博客程序,后来VPS里运行MongoDB经常自己挂掉就索性没理了.直到现在VPS已经过期,服务器被强制关掉了.周末在家索性想着 ...
- Lingo 做线性规划 - Asset allocation and Portfolio models
Reference: <An Introduction to Management Science Quantitative Approaches to Decision Making, Rev ...
- 在Mac OS上安装Vagrant和Docker的教程
转载于:http://www.itxuexiwang.com/a/shujukujishu/redis/2016/0216/128.html?1455808640 当听到很多人在说Docker是多么多 ...
- paip.enhes efis 自动获取文件的中文编码
paip.enhes efis 自动获取文件的中文编码 ##为什么需要自动获取文件的中文编码 提高开发效率,自动获取文件的中文编码 .不需要手动设置编码...轻松的.. ##cpdetector 可 ...
- FIR.im Weekly - 上周微博热转资源精选
LeakCanary: 让内存泄露无所遁形 Square 开源的 LeakCanary,国内开发者 @廖祜秋liaohuqiu 翻译了对应的官方博客,撰写了中文使用说明文档,同时还写了一个小 Demo ...