Extending Smarty With Plugins 以插件扩展Smarty

PHP Smarty

Smarty - the compiling PHP template engine
Prev 来源:PHP中文社区 Next

Chapter 16. Extending Smarty With Plugins[第十六章.以插件扩展Smarty]

Table of Contents
How Plugins Work 插件如何工作
Naming Conventions 命名约定
Writing Plugins 编写插件
Template Functions 模板函数插件
Modifiers 修饰插件
Block Functions 区块函数插件
Compiler Functions 编译函数插件
Prefilters/Postfilters 预滤器/补滤器插件
Output Filters 输出过滤插件
Resources 资源插件
Inserts 嵌入插件
  • functions 函数插件
  • modifiers 修饰插件
  • block functions 区块函数插件
  • compiler functions 编译函数插件
  • prefilters 预滤器插件
  • postfilters 补滤器插件
  • outputfilters 输出过滤插件
  • resources 资源插件
  • inserts 嵌入插件
With the exception of resources, backwards compatibility with the old way of registering handler functions via register_* API is preserved. If you did not use the API but instead modified the class variables $custom_funcs, $custom_mods, and other ones directly, then you will need to adjust your scripts to either use the API or convert your custom functionality into plugins.

How Plugins Work插件如何工作


Prev 来源:PHP中文社区 上一页 Home 回顶部 Next 下一页
Default template handler function缺省模板处理函数 Up 向上 Naming Conventions命名约定