Skip to content

kozo/Partial

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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'); ?>