本文整理汇总了PHP中Access::getAuthorizationFromLegacy方法的典型用法代码示例。如果您正苦于以下问题:PHP Access::getAuthorizationFromLegacy方法的具体用法?PHP Access::getAuthorizationFromLegacy怎么用?PHP Access::getAuthorizationFromLegacy使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Access
的用法示例。
在下文中一共展示了Access::getAuthorizationFromLegacy方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getPermissionStatic
/**
* Check employee permission for module (static method)
* @param int $id_module
* @param array $variable (action)
* @param object $employee
* @return bool if module can be transplanted on hook
*/
public static function getPermissionStatic($id_module, $variable, $employee = null)
{
if (!in_array($variable, array('view', 'configure', 'uninstall'))) {
return false;
}
if (!$employee) {
$employee = Context::getContext()->employee;
}
if ($employee->id_profile == _PS_ADMIN_PROFILE_) {
return true;
}
$slug = Access::findSlugByIdModule($id_module) . Access::getAuthorizationFromLegacy($variable);
return Access::isGranted($slug, $employee->id_profile);
}
示例2: access
/**
*
* @param string $action
* @param bool $disable
*/
public function access($action, $disable = false)
{
if (empty($this->tabAccess[$action])) {
$slugs = array();
foreach ((array) Access::getAuthorizationFromLegacy($action) as $roleSuffix) {
$slugs[] = $this->getTabSlug() . $roleSuffix;
}
$this->tabAccess[$action] = Access::isGranted($slugs, $this->context->employee->id_profile);
}
return $this->tabAccess[$action];
}