kozo/partial

Partial plugin for CakePHP

Installs: 127 962

Dependents: 1

Suggesters: 0

Security: 0

Stars: 9

Watchers: 2

Forks: 7

Open Issues: 0

Type:cakephp-plugin

5.0.0 2023-11-21 09:26 UTC

This package is auto-updated.

Last update: 2024-04-21 10:31:03 UTC


README

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