0

我正在尝试开发自己的模板库,因为我已经看过很多模板库,它们所做的超出了我的需要。我希望能够在我的模板库中使用资产和主题以及模块。

我找到的最好的一个是 Phil Sturgeon's,他用于 PyroCMS。我想开发一些接近于此的东西,但那里的东西比我需要的要多。

我的主要工作是找到一个可以处理主题、模块和资产使用的。

4

2 回答 2

2
  1. 将 Template.php 文件从您下载的包中复制到库文件夹。

  2. 将 template.php 文件复制到 config 文件夹

  3. 你有视图/模板下的模板吗

  4. 编辑template.php(配置文件)如下

    //Default Template Configuration (adjust this or create your own)
    //Default template - This is the Main template
    
    $template['default']['template'] = 'template/template';
    $template['default']['regions'] = array('menu','content','title');
    
    $template['default']['parser'] = 'parser';
    $template['default']['parser_method'] = 'parse';
    $template['default']['parse_template'] = TRUE;
    
    
    
    //Login Template
    $template['login']['template'] = 'template/template_login';
    $template['login']['regions'] = array('content');
    
    $template['login']['parser'] = 'parser';
    $template['login']['parser_method'] = 'parse';
    $template['login']['parse_template'] = TRUE;
    

这是基本配置,如果您想了解有关如何从视图发送数据的更多信息,请告诉我

于 2013-02-21T08:33:18.760 回答
1

另一个想法是 CodeIgniter 模板。

在这里你有链接: http ://williamsconcepts.com/ci/codeigniter/libraries/template/reference.html

您可以下载、阅读文档并轻松创建自己的模板。

于 2013-02-21T08:07:37.913 回答