在站点中显示新模块
我是 drupal 新手, 我基于此示例创建了一个新模块,
http://api.drupal.org/api/drupal/developer--examples--page_example--page_example.module/6/source
我只是将模块名称和方法更改为我的模块新名称“jtpc” 并将 jtpc_perm 更改为
function jtpc_perm() {
return array(
'access jtpc content' ,
);
}
现在我如何在 drupal 站点中查看该模块? 我的下一步是什么?
i am new to drupal ,
i created a new module base on this example
http://api.drupal.org/api/drupal/developer--examples--page_example--page_example.module/6/source
i just changed the module name and method to my module new name 'jtpc'
and change the jtpc_perm to this
function jtpc_perm() {
return array(
'access jtpc content' ,
);
}
now how can i view the module in drupal site ?
what is my next step ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
下一步是实现
hook_menu()
或/和hook_form_alter()
。这些是模块必须通过其创建的页面(或表单)或从其他模块创建的附加其自己的内容的页面对用户可见的主要方式。阅读菜单系统,Forms API 快速入门指南, 表单 API 参考,表单生成< /a>, 如何定义内容 (节点)类型,如何限制对节点的访问,如何扩展现有内容类型,以及默认主题实现 。
The next step is to implement
hook_menu()
, or/andhook_form_alter()
. Those are the main ways a module have to be visible to users through pages (or forms) it creates, or pages created from other modules to which attach its own content.Read Menu system, Forms API Quickstart Guide, Forms API Reference, Form generation, How to define content (node) types, How to restrict access to nodes, How to extend existing content types, and Default theme implementations.