當前位置: 首頁>>代碼示例>>PHP>>正文


PHP CommonModel::get_pc_ids方法代碼示例

本文整理匯總了PHP中CommonModel::get_pc_ids方法的典型用法代碼示例。如果您正苦於以下問題:PHP CommonModel::get_pc_ids方法的具體用法?PHP CommonModel::get_pc_ids怎麽用?PHP CommonModel::get_pc_ids使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在CommonModel的用法示例。


在下文中一共展示了CommonModel::get_pc_ids方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: edit

 /**
  * ription 編輯產品信息表單頁麵
  * 
  * @param int $p_id
  *            產品id
  */
 public function edit($p_id)
 {
     if (!$this->check_power_new('production_edit')) {
         return;
     }
     /*
      * 基本信息
      */
     $p_id = intval($p_id);
     $pinfo = CommonModel::get_product_list($p_id);
     if (empty($pinfo)) {
         message('信息不存在');
         return;
     }
     $admin = $this->session->userdata('admin_id');
     /* 不再需要該字段來限製權限了
        $managers = explode(',',$pinfo['p_managers']);
        if(!in_array($admin, $managers)&&!$this->is_super_user())
        {
            message('沒有管理權限');
            return;
        }
         */
     $data = array();
     $data['pro'] = $pinfo;
     $data['act'] = 'edit';
     $data['admin_ids'] = CommonModel::get_admins('edit');
     $data['admin_id'] = $admin;
     $data['pc_ids'] = CommonModel::get_pc_ids();
     $data['exam_ids'] = CommonModel::get_exam_ids('edit') + array($pinfo['exam_pid'] => $pinfo['exam_name']);
     $this->load->view('production/edit', $data);
 }
開發者ID:Vincent-Shen,項目名稱:origin,代碼行數:38,代碼來源:production.php


注:本文中的CommonModel::get_pc_ids方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。