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


PHP adminReadBase::__construct方法代碼示例

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


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

示例1: __construct

 public function __construct()
 {
     $this->mPrmsMethods = array('manage' => '管理', '_node' => array('name' => '小店分類', 'filename' => 'cat.php', 'node_uniqueid' => 'cat_node'));
     parent::__construct();
     include CUR_CONF_PATH . 'lib/fleamarket.class.php';
     $this->obj = new road();
 }
開發者ID:h3len,項目名稱:Project,代碼行數:7,代碼來源:fleamarket.php

示例2: __construct

 public function __construct()
 {
     parent::__construct();
     $this->obj = new Core();
     include CUR_CONF_PATH . 'lib/UpYun.class.php';
     $this->upyun = new UpYun();
 }
開發者ID:h3len,項目名稱:Project,代碼行數:7,代碼來源:cdn_log_analysis.php

示例3: __construct

 public function __construct()
 {
     parent::__construct();
     $this->archiveContent = new archiveContent();
     $this->archive_id = intval($this->input['archive_id']);
     $this->tableName = $this->archiveContent->get_tableName_by_id($this->archive_id);
 }
開發者ID:h3len,項目名稱:Project,代碼行數:7,代碼來源:archive_content.php

示例4: __construct

 public function __construct()
 {
     parent::__construct();
     $this->mode = new leancloud_user();
     $this->applant = new app();
     $this->company = new company();
 }
開發者ID:h3len,項目名稱:Project,代碼行數:7,代碼來源:leancloud_user.php

示例5: __construct

 public function __construct()
 {
     parent::__construct();
     $this->mode = new developer_auth_mode();
     $this->app_info_mode = new app_info_mode();
     $this->app = new app();
 }
開發者ID:h3len,項目名稱:Project,代碼行數:7,代碼來源:developer_auth.php

示例6:

 function __construct()
 {
     parent::__construct();
     if ($this->mNeedCheckIn && !$this->prms['program']) {
         $this->errorOutput(NO_OPRATION_PRIVILEGE);
     }
 }
開發者ID:h3len,項目名稱:Project,代碼行數:7,代碼來源:program.php

示例7: __construct

 public function __construct()
 {
     parent::__construct();
     /*********權限驗證開始*********/
     $this->verify_content_prms(array('_action' => 'show'));
     /*********權限驗證結束*********/
 }
開發者ID:h3len,項目名稱:Project,代碼行數:7,代碼來源:formstyle.php

示例8: __construct

 public function __construct()
 {
     $this->mPrmsMethods = array('show' => '查看', 'operate' => '操作', 'delete' => '刪除', 'audit' => '審核', '_node' => array('name' => '地鐵分類', 'filename' => 'subway_sort.php', 'node_uniqueid' => 'subway_sort'));
     parent::__construct();
     include CUR_CONF_PATH . 'lib/subway.class.php';
     $this->obj = new subway();
 }
開發者ID:h3len,項目名稱:Project,代碼行數:7,代碼來源:subway.php

示例9: __construct

 public function __construct()
 {
     $this->mPrmsMethods = array('show' => '查看', 'manage' => '管理');
     parent::__construct();
     class_exists('emailSettings') or (require CUR_CONF_PATH . 'lib/email_settings.class.php');
     $this->mEmailSettings = new emailSettings();
 }
開發者ID:h3len,項目名稱:Project,代碼行數:7,代碼來源:email_settings.php

示例10: __construct

 public function __construct()
 {
     $this->mPrmsMethods = array('manage' => '管理', '_node' => array('name' => '會員分類', 'filename' => 'member_node.php', 'node_uniqueid' => 'member_node'));
     parent::__construct();
     require_once CUR_CONF_PATH . 'lib/member.class.php';
     $this->mMember = new member();
 }
開發者ID:h3len,項目名稱:Project,代碼行數:7,代碼來源:member.php

示例11: __construct

 public function __construct()
 {
     $this->mPrmsMethods = array('show' => '查看', 'create' => '增加', 'update' => '修改', 'delete' => '刪除', 'audit' => '狀態', '_node' => array('name' => '頻道分類', 'filename' => 'channel_node.php', 'node_uniqueid' => 'channel_node'));
     parent::__construct();
     require_once CUR_CONF_PATH . 'lib/channel.class.php';
     $this->mChannel = new channel();
 }
開發者ID:h3len,項目名稱:Project,代碼行數:7,代碼來源:channel.php

示例12: __construct

 public function __construct()
 {
     $this->mPrmsMethods = array('show' => '查看', 'presenter' => '主持人頁', 'director' => '導播頁', 'manage' => '管理', '_node' => array('name' => '頻道', 'filename' => 'node.php', 'node_uniqueid' => 'topic'));
     parent::__construct();
     include_once CUR_CONF_PATH . 'lib/mode.class.php';
     $this->mode = new mode();
 }
開發者ID:h3len,項目名稱:Project,代碼行數:7,代碼來源:topic.php

示例13: __construct

 public function __construct()
 {
     parent::__construct();
     $this->obj = new Core();
     $this->stateconfig = $this->settings['order_status'];
     $this->trace_stepconfig = $this->settings['trace_step'];
 }
開發者ID:h3len,項目名稱:Project,代碼行數:7,代碼來源:Export.php

示例14: __construct

 public function __construct()
 {
     parent::__construct();
     $this->mode = new report_center_mode();
     $this->app = new app();
     $this->members = new members();
 }
開發者ID:h3len,項目名稱:Project,代碼行數:7,代碼來源:report_center.php

示例15: __construct

 /**
  * 構造函數
  * @author wangleyuan
  * @category hogesoft
  * @copyright hogesoft
  * @include recycle.class.php
  */
 public function __construct()
 {
     $this->mPrmsMethods = array('manage' => '管理', '_node' => array('name' => '回收站節點', 'filename' => 'recycle_node.php', 'node_uniqueid' => 'recycle_node'));
     parent::__construct();
     include CUR_CONF_PATH . 'lib/recycle.class.php';
     $this->obj = new recycle();
 }
開發者ID:h3len,項目名稱:Project,代碼行數:14,代碼來源:recycle.php


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