当前位置: 首页>>代码示例>>PHP>>正文


PHP ACLController::checkAccessInternal方法代码示例

本文整理汇总了PHP中ACLController::checkAccessInternal方法的典型用法代码示例。如果您正苦于以下问题:PHP ACLController::checkAccessInternal方法的具体用法?PHP ACLController::checkAccessInternal怎么用?PHP ACLController::checkAccessInternal使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ACLController的用法示例。


在下文中一共展示了ACLController::checkAccessInternal方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: beanACL

 /**
  * Check bean ACLs
  * @param string $module
  * @param string $action
  * @param array $context
  */
 protected function beanACL($module, $action, $context)
 {
     $bean = $context['bean'];
     //if we don't implent acls return true
     if (!$bean->bean_implements('ACL')) {
         return true;
     }
     if (!empty($context['owner_override'])) {
         $is_owner = $context['owner_override'];
     } else {
         $is_owner = $bean->isOwner($this->getUserID($context));
     }
     if (isset(self::$action_translate[$action])) {
         $action = self::$action_translate[$action];
     }
     // Some modules (Trackers, TrackerSessions, TrackerPerfs, TrackerQueries) use special acltype
     $aclType = 'module';
     if (!empty($bean->acltype)) {
         $aclType = $bean->acltype;
     }
     switch ($action) {
         case 'import':
         case 'list':
             return ACLController::checkAccessInternal($module, $action, true, $aclType);
         case 'delete':
         case 'view':
         case 'export':
         case 'massupdate':
             return ACLController::checkAccessInternal($module, $action, $is_owner, $aclType);
         case 'edit':
             if (!isset($context['owner_override']) && !empty($bean->id)) {
                 if (!empty($bean->fetched_row) && !empty($bean->fetched_row['id']) && !empty($bean->fetched_row['assigned_user_id']) && !empty($bean->fetched_row['created_by'])) {
                     $temp = BeanFactory::newBean($bean->module_dir);
                     $temp->populateFromRow($bean->fetched_row);
                 } else {
                     if ($bean->new_with_id) {
                         $is_owner = true;
                     } else {
                         $temp = BeanFactory::getBean($bean->module_dir, $bean->id);
                     }
                 }
                 if (!empty($temp)) {
                     $is_owner = $temp->isOwner($this->getUserID($context));
                     unset($temp);
                 }
             }
         case 'popupeditview':
         case 'editview':
             return ACLController::checkAccessInternal($module, 'edit', $is_owner, $aclType);
     }
     //if it is not one of the above views then it should be implemented on the page level
     return true;
 }
开发者ID:jglaine,项目名称:sugar761-ent,代码行数:59,代码来源:SugarACLStatic.php


注:本文中的ACLController::checkAccessInternal方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。