-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathexamples.module
More file actions
41 lines (35 loc) · 1.25 KB
/
Copy pathexamples.module
File metadata and controls
41 lines (35 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
/**
* @file
* 本文件作为
* @link http://drupal.org/project/examples Examples for Developers Project @endlink
* 的众多示例模块的替身存在,可以在这里下载和测试。
*
* 有的人可能说这个模块是个文档例子。然而,注意本模块定义了很多组来区分这些子模块,这种行为
* 对其他模块来说可能并不合适。
*/
/**
* @defgroup examples Examples
* @{
* 针对Drupal核心功能的,具有完善文档的示例。
*
* 开发者能够通过试验模块的方式,能够快速的学习使用Drupal某一方面API。
*
* 从下面网址下载本模块(当然,还可以参与提交bug报告、补丁和文档)
*
* http://drupal.org/project/examples
*/
/**
* Implements hook_help().
* @param string $path IDE语法检查强迫症
* @param array $arg IDE语法检查强迫症
*/
function examples_help($path, $arg) {
// 回复: http://drupal.org/node/767204
// 5. 我们需要一个主要组(Examples),存在于examples.module内。
// 这个examples.module应该主要是一些格式化的文档,指向其他模块。
// 他还有一个hook_help(),来解释这一模块的目标以及如何访问其他例子。
}
/**
* @} End of 'defgroup examples'.
*/