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


PHP auth::get_one_org方法代码示例

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


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

示例1: getTopFatherOrgid

 private function getTopFatherOrgid($org_id)
 {
     if ($org_id) {
         include_once ROOT_PATH . 'lib/class/auth.class.php';
         $auth = new auth();
         $data = array();
         $data = $auth->get_one_org($org_id);
         if ($data) {
             $data = $data[0];
             if ($data['fid']) {
                 //hg_pre($data);exit;
                 return $this->getTopFatherOrgid($data['fid']);
             } else {
                 return $data['id'];
             }
         }
     }
 }
开发者ID:h3len,项目名称:Project,代码行数:18,代码来源:company.php

示例2: sysOrg

 public function sysOrg()
 {
     include_once ROOT_PATH . 'lib/class/auth.class.php';
     $auth = new auth();
     $sql = "SELECT * FROM " . DB_PREFIX . "company WHERE 1";
     $q = $this->db->query($sql);
     while ($row = $this->db->fetch_array($q)) {
         if ($row['org_id']) {
             $ret = $auth->get_one_org($row['org_id']);
             $ret = $ret[0];
             if ($row['org_children'] != $ret['childs']) {
                 $sql = "UPDATE " . DB_PREFIX . "company SET org_children='" . $ret['childs'] . "' WHERE id=" . $row['id'];
                 $this->db->query($sql);
             }
         }
     }
     return true;
 }
开发者ID:h3len,项目名称:Project,代码行数:18,代码来源:company.class.php

示例3: getFatherOrgById

 public function getFatherOrgById()
 {
     if ($this->user['org_id']) {
         $org_id = $this->user['org_id'];
     } else {
         $org_id = $this->input['org_id'] ? trim($this->input['org_id']) : '';
     }
     $data = array();
     include_once ROOT_PATH . 'lib/class/auth.class.php';
     $auth = new auth();
     $data = $auth->get_one_org($org_id);
     $id = $data[0]['fid'];
     $data = $auth->get_one_org($id);
     $id2 = $data[0]['fid'];
     if ($id2 == 0) {
         $fid = array($id);
     } else {
         $fid = array($id, $id2);
     }
     if ($fid) {
         include_once ROOT_PATH . 'lib/class/auth.class.php';
         $auth = new auth();
         foreach ($fid as $k => $v) {
             $data = $auth->getMemberByOrg($v);
             if ($data) {
                 foreach ($data as $kk => $vv) {
                     $user_info[] = $vv;
                 }
             }
         }
     }
     $this->addItem($user_info);
     $this->output();
 }
开发者ID:h3len,项目名称:Project,代码行数:34,代码来源:user.php


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