rogermaciel/cakephp-acl-link-helper

CakePHP 3.x ACL 链接助手。

1.0 2019-11-27 14:43 UTC

This package is auto-updated.

Last update: 2024-09-28 01:39:35 UTC


README

加载助手

在 src/View/AppView.php 中

<?php
	class AppView extends View
	{
		public function initialize()
		{
			$this->loadHelper('Acl', [
				'userModel' => 'Users' //Optional
			]);
		}
	}
?>

用法

创建普通链接

<?= $this->Acl->link($title, $url, $options)); ?>

创建帖子链接

<?= $this->Acl->postLink($title, $url, $options)); ?>