Partial plugin for CakePHP
github.com/kozo/Partial
Type:cakephp-plugin
pkg:composer/kozo/partial
Installs: 145 128
Dependents: 1
Suggesters: 0
Stars: 9
Open Issues: 0
Advisories: 0
Aikido package health analysis
Requires
Requires (Dev)
Suggests
None
Provides
Conflicts
Replaces
MIT b3b47e30acc785de8f3bb94d607b8e3ab6d24c15
templatecakephp
This package is auto-updated.
Last update: 2026-02-15 12:50:53 UTC
Partial Plugin is CakePHP element of small scope.
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'); ?>