开发模板库

时间:2013-02-20 22:48:06

标签: php codeigniter

我正在尝试开发自己的模板库,因为我看了很多,他们只是做了比我需要的更多。我希望能够将资产和主题以及模块用于我的模板库。

我发现的最好的是Phil Sturgeon,他用于PyroCMS。我想开发一些接近这个的东西,但是我需要的不仅仅是那里。

我的主要任务是找到一个可以使用。来处理主题,模块和资产。

2 个答案:

答案 0 :(得分:2)

  1. 将Template.php文件从您下载的软件包复制到libraries文件夹。

  2. 将template.php文件复制到配置文件夹

  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;
    
  5. 这是基本配置,如果您想了解有关如何从视图发送数据的更多信息,请告诉我

答案 1 :(得分:1)

另一个想法是CodeIgniter Template。

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

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