www.tvdrupal.com | Drupal中文视频教程 文档源码
Lesson22 Drupal7高级主题覆写,介绍hook_theme 和 theme_hook template.php function bartik_theme() { $items = array(); $items['hellofunc'] = array( 'function' => 'theme_hellofunc', ); $items['hellotpl'] = array( 'template' => 'templates/hellotpl', // hellotpl 是tpl.php ,templates是目录 ); return $items; } function theme_hellofunc($variables) { return "...hellofunc..."; } ------------------ page.tpl.php
power by
tvdrupal.com