sasilen / results
Results plugin for CakePHP 4
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:cakephp-plugin
Requires
- cakephp/cakephp: ~4.1.0
Requires (Dev)
- phpunit/phpunit: ^8.0
This package is auto-updated.
Last update: 2024-11-29 06:16:23 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']);
}