PHP code example of mirko-pagliai / cakephp-essentials
1. Go to this page and download the library: Download mirko-pagliai/cakephp-essentials library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
mirko-pagliai / cakephp-essentials example snippets
use Cake\Essentials\View\View;
class AppView extends View
{
}
class AppView extends View
public function initialize(): void
{
parent::initialize();
/**
* These override any helpers defined by the parent.
*/
$this->addHelper('Html');
$this->addHelper('Form');
}
}