function(array $a)
{
if (!empty($a['num'])
|| ((substr($a['name'], -4) === '.php')
&& (X::basename($a['name']) !== '_ctrl.php'))
) {
if (!$this->isAuthorizedRoute($a['path'])) {
return true;
}
}
return false;
}