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


PHP Organization::get_org_children方法代码示例

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


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

示例1: get_authz_status

 /**
  * Returns a mapping of org_id => so_status, cascading everything down the
  * org tree.  Only src_orgs with a DELETED status will be ignored here.
  *
  * @param int     $src_id
  * @return array $org_ids
  */
 public static function get_authz_status($src_id)
 {
     $conn = AIR2_DBManager::get_master_connection();
     $org_status = array();
     // calculate authz
     $sel = "select * from src_org where so_src_id = {$src_id}";
     $srcorgs = $conn->fetchAll($sel);
     $sorted = Organization::sort_by_depth($srcorgs, 'so_org_id');
     foreach ($sorted as $so) {
         // ignore deleted src_orgs
         $stat = $so['so_status'];
         if ($stat == SrcOrg::$STATUS_DELETED) {
             continue;
         }
         // apply status to self and all children
         $children = Organization::get_org_children($so['so_org_id']);
         foreach ($children as $oid) {
             $org_status[$oid] = $stat;
         }
     }
     return $org_status;
 }
开发者ID:kaakshay,项目名称:audience-insight-repository,代码行数:29,代码来源:Source.php

示例2: get_authz

 /**
  * Returns array of related Organization org_ids that affect
  * the authorization of the SrcResponseSet.
  *
  * @param boolean $include_children
  * @return array   $org_ids
  */
 public function get_authz($include_children = true)
 {
     $org_ids = array();
     foreach ($this->Inquiry->ProjectInquiry as $pinq) {
         foreach ($pinq->Project->ProjectOrg as $porg) {
             if ($include_children) {
                 $children = Organization::get_org_children($porg->porg_org_id);
                 foreach ($children as $org_id) {
                     $org_ids[$org_id] = 1;
                 }
             } else {
                 $org_ids[$porg->porg_org_id] = 1;
             }
         }
     }
     return array_keys($org_ids);
 }
开发者ID:kaakshay,项目名称:audience-insight-repository,代码行数:24,代码来源:SrcResponseSet.php

示例3: get_authz

 /**
  * Returns array of related Organization org_ids that affect
  * the authorization of the Project.
  *
  * @return array $org_ids
  */
 public function get_authz()
 {
     $org_ids = array();
     foreach ($this->ProjectOrg as $porg) {
         $children = Organization::get_org_children($porg->porg_org_id);
         foreach ($children as $org_id) {
             $org_ids[$org_id] = 1;
         }
     }
     return array_keys($org_ids);
 }
开发者ID:kaakshay,项目名称:audience-insight-repository,代码行数:17,代码来源:Project.php

示例4: get_authz

 /**
  * Get authorization object for this User.
  *   array(org_id => bitmask-role)
  *
  * This represents the Organization Asset authz.  That is, explicit roles
  * cascade both up and down the Org tree.  Explicit roles will always
  * override implicit ones.
  *
  * @return array
  */
 public function get_authz()
 {
     if ($this->authz) {
         return $this->authz;
     }
     // reset
     $this->authz = array();
     $this->authz_up = array();
     // sort orgs, and calculate authz
     $sorted = Organization::sort_by_depth($this->UserOrg, 'uo_org_id');
     foreach ($sorted as $uo) {
         if ($uo->uo_status == UserOrg::$STATUS_ACTIVE) {
             $children = Organization::get_org_children($uo->uo_org_id);
             $bitmask = $uo->AdminRole->get_bitmask();
             foreach ($children as $org_id) {
                 $this->authz[$org_id] = $bitmask;
                 $this->authz_up[$org_id] = $bitmask;
             }
             // get upwards-authz
             $parents = Organization::get_org_parents($uo->uo_org_id);
             foreach ($parents as $org_id) {
                 $curr = isset($this->authz_up[$org_id]) ? $this->authz_up[$org_id] : 0;
                 $this->authz_up[$org_id] = max(array($bitmask, $curr));
             }
         }
     }
     return $this->authz;
 }
开发者ID:kaakshay,项目名称:audience-insight-repository,代码行数:38,代码来源:User.php


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