CakePHP的Partial插件
github.com/kozo/Partial
主页
源码
问题
安装数: 131,802
依赖者: 1
建议者: 0
安全性: 0
星标: 9
关注者: 2
分支: 7
开放问题: 0
类型:cakephp-plugin
Requires
Requires (Dev)
Suggests
None
Provides
Conflicts
Replaces
MIT b3b47e30acc785de8f3bb94d607b8e3ab6d24c15
templatecakephp
This package is auto-updated.
Last update: 2024-09-21 11:23:07 UTC
Partial插件是CakePHP的小范围元素。
composer require kozo/partial:"~5.0"
AppView.php
use Partial\View\PartialTrait; class AppView extends View { use PartialTrait; }
_hoge.ctp
Partial content.
example.ctp
<?= $this->partial('hoge'); ?>