rogermaciel / cakephp-acl-link-helper
CakePHP 3.x ACL Link Helper.
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:cakephp-plugin
Requires
- php: >=5.6
- cakephp/cakephp: ~3.0
Requires (Dev)
- phpunit/phpunit: ~4.1
This package is auto-updated.
Last update: 2025-03-28 02:40:59 UTC
README
Loading the helper
in src/View/AppView.php
<?php class AppView extends View { public function initialize() { $this->loadHelper('Acl', [ 'userModel' => 'Users' //Optional ]); } } ?>
Usage
Create normal link
<?= $this->Acl->link($title, $url, $options)); ?>
Create post link
<?= $this->Acl->postLink($title, $url, $options)); ?>