定制 maglnet/smarty-module 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

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

maglnet/smarty-module

最新稳定版本:2.4.0

Composer 安装命令:

composer require maglnet/smarty-module

包简介

Smarty template engine module for Laminas 3

README 文档

README

SmartyModule is a module that integrates the Smarty templating engine with Laminas.

Installation

Composer

  1. Add "maglnet/smarty-module": "^2.0" to your composer.json file and run composer update.
  2. 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', ), 'smarty' => array( 'error_reporting'=> E_PARSE, 'compile_dir' => 'path/to/compile/dir', 'cache_dir' => 'path/to/cache/dir', //Other Smarty options ), 'template_path_stack' => array( __DIR__ . '/../view', ), 'plugin_path_stack' => array( __DIR__ . '/../smarty-plugins', ), ), ... 

Aditional info about view manager: Laminas\View.

统计信息

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

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 25
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-01-04