承接 murganikolay/smarty-module 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

murganikolay/smarty-module

最新稳定版本:1.2.0

Composer 安装命令:

composer require murganikolay/smarty-module

包简介

Smarty template engine module for Zend Framework 2

README 文档

README

SmartyModule is a module that integrates the Smarty templating engine with Zend Framework 2.

Version: 1.0.0

Istallation

Composer

  1. Add "murganikolay/smarty-module": "1.0.0" to your composer.json file and run php composer.phar update.
  2. Add SmartyModule to your config/application.config.php file under the modules key.

Manual

  1. git clone https://github.com/MurgaNikolay/SmartyModule.git in to vendor dir
  2. Put Smarty in to vendor dir
  3. Setup autoloader for load Smarty.
  4. Add SmartyModule to your config/application.config.php file under the modules key.

Configuration

Change you Application config like this:

...
'view_manager' => array(
    'default_suffix' => 'tpl', // <-- new option for path stack resolver
    'display_not_found_reason' => true,
    'display_exceptions'       => true,
    'doctype'                  => 'HTML5',
    'not_found_template'       => 'error/404',
    'exception_template'       => 'error/index',
    'template_map' => array(
        'layout/layout'           => __DIR__ . '/../view/layout/layout.tpl',
        'application/index/index' => __DIR__ . '/../view/application/index/index.tpl',
        'error/404'               => __DIR__ . '/../view/error/404.tpl',
        'error/index'             => __DIR__ . '/../view/error/index.tpl',
    ),
    'template_path_stack' => array(
        __DIR__ . '/../view',
    ),
),
...

Aditional info about view manager: Zend\View.

统计信息

  • 总下载量: 46.53k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 33
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 30
  • Watchers: 7
  • Forks: 24
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2012-12-28