Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 330 Bytes

README.md

File metadata and controls

31 lines (23 loc) · 330 Bytes

PartialTrait

Partial Plugin is CakePHP element of small scope.

Installation

composer require kozo/partial:"~5.0"

Usage

AppView.php

use Partial\View\PartialTrait;

class AppView extends View
{
	use PartialTrait;
}

_hoge.ctp

Partial content.

example.ctp

<?= $this->partial('hoge'); ?>