Drupal钩子菜单重定向到主题tpl页面
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Drupal钩子菜单重定向到主题tpl页面相关的知识,希望对你有一定的参考价值。
<?php function mymodule_menu() { 'title' => 'This is my custom page', 'page callback' => 'my_special_page', 'type' => MENU_CALLBACK, ); return $items; } function my_special_page() { return theme('my_special_page'); } function mymodule_theme($existing, $type, $theme, $path) { 'template' => 'page-my-special-page', ), ); } // //replace the whole page function mymodule_theme_registry_alter(&$theme_registry) { $theme_hook = 'page'; // my hook name // Get the path to this module $modulepath = drupal_get_path('module', 'mymodule'); // Add the module path on top in the array of paths } ?>
以上是关于Drupal钩子菜单重定向到主题tpl页面的主要内容,如果未能解决你的问题,请参考以下文章
在 Drupal 的 UberCart 结帐期间重定向到注册页面而不是登录页面?