I want to hide the button/link based on ACO. Please help me how to do it in cakephp 3 as for cakephp2 we can do it by follow this link.
I need alternative of following for 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');
}