我想隐藏基于ACO的按钮/链接。请帮助我如何在cakephp 3中做到这一点,就像cakephp2一样,我们可以通过点击this链接来做到这一点。
cakephp3需要以下替代方法:
public function index() {
// These all return true:
$this->Acl->check('warriors/Aragorn', 'Weapons');
$this->Acl->check('warriors/Aragorn', 'Weapons', 'create');
$this->Acl->check('warriors/Aragorn', 'Weapons', 'read');
}