rhino-php / rhino
Rhino, a CMS and Application-Framework plugin for CakePHP
Installs: 285
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
Type:cakephp-plugin
Requires
- php: >=8.1
- cakephp/authentication: ^3.0
- cakephp/authorization: ^3.0
- cakephp/cakephp: ^5.0
- cakephp/migrations: ^4.1
- cakephp/plugin-installer: ^2.0
- tyqo/editorjs-html-parser: ^1.0
- zunnu/cake-htmx: ^1.0
Requires (Dev)
- phpunit/phpunit: ^10.1
- dev-main
- 2.0.14
- 2.0.13
- 2.0.12
- 2.0.11
- 2.0.10
- 2.0.8
- 2.0.7
- 2.0.6
- 2.0.5
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- 1.0.19
- 1.0.18
- 1.0.17
- 1.0.16
- 1.0.15
- 1.0.14
- 1.0.13
- 1.0.12
- 1.0.11
- 1.0.10
- 1.0.9
- 1.0.8
- 1.0.7
- 1.0.6
- 1.0.5
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
- dev-dev
- dev-braunj/tablemanager
- dev-dependabot/composer/coullc/tusk-1.1.14
- dev-dependabot/composer/cakephp/plugin-installer-2.0.1
- dev-dependabot/composer/cakephp/cakephp-codesniffer-5.1.1
This package is auto-updated.
Last update: 2025-03-14 14:53:48 UTC
README
Quick Start:
composer require rhino-php/rhino
Installation
You can install this plugin into your CakePHP application using composer. The recommended way to install composer packages is:
composer require rhino-php/rhino
(optional) after the Plugin is installed and the Application is connected to the Database, you can run the following in the root of the Application:
cp -aR vendor/coullc/rhino/skeleton/. .
bin/cake migrations migrate -p Rhino
bin/cake migrations seed -p Rhino
Create the File PagesController.php
and add the following:
namespace App\Controller; use Rhino\Controller\PagesController as BaseController; class PagesController extends BaseController { public function layout(int $id) { // add Policy or other configuration parent::layout($id); } }
Access the Layout options through /pages
!Important
To Use the Layoutmode you need to enable the CakeHtmx
plugin.
Development
See rhino. Clone Rhino, then Clone Rhino in the Plugins folder.
Next Up: Layoutmode Enhancment
Currently there is only an HTML input field. Depending on the Layoutelement the displayed input fields should update.
Also, after en Edit, the newly loaded element is not page aware.