sasilen / results
Results plugin for CakePHP 4
Package info
github.com/sasilen/cakephp-plugin-results
Type:cakephp-plugin
pkg:composer/sasilen/results
dev-master
2020-11-29 19:14 UTC
Requires
- cakephp/cakephp: ~4.1.0
Requires (Dev)
- phpunit/phpunit: ^8.0
This package is auto-updated.
Last update: 2026-03-01 00:33:39 UTC
README
Installation
You can install this plugin into your CakePHP application using composer.
The recommended way to install composer packages is:
composer config repositories.results git https://github.com/sasilen/cakephp-plugin-results.git
composer require sasilen/results
Configuration
./bin/cake plugin load Sasilen/Results
Migrate database schema
./bin/cake migrations migrate -p Results
Add templates (main app)
# /src/View/AppView.php
public function initialize(): void
{
parent::initialize();
$this->loadHelper('CakeDC/Users.AuthLink');
$this->loadHelper('Paginator', ['templates' => 'templates-paginator']);
$this->loadHelper('Form', ['templates' => 'templates-form']);
}