Acl helper for CakePHP 2.x access control list component
For one url in your View.ctp check access to url
$this->Acl->check('/admin');
For many urls in your View.ctp check access to urls
$this->Acl->check(array('/admin', '/admin/private-action'));
Print link for Html helper
$this->Acl->link('Reset cache', '/admin/cache');
Check menu parent element access
$this->Acl->checkList(array('/admin/cache', '/admin'));