You are here

定制drupal Smarty主题

g089h515r806 的头像
Submitted by g089h515r806 on 星期五, 2008-09-19 07:29

在你的Drupal主题目录下,创建一个名为smartytemplate.php的文件.

<?php
  function _smarty_variables($hook, $vars = array()) {
    switch ($hook) {
      case 'page':
      if ((arg(0) == 'admin')) {
        $vars['template_file'] = 'admin';
      }
      break;
   }
   return $vars;
  }
?>

 

参看:

 相关链接: http://drupal.org/node/67476 , Think in Drupal

 

Drupal版本: