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


PHP adminUpdateBase類代碼示例

本文整理匯總了PHP中adminUpdateBase的典型用法代碼示例。如果您正苦於以下問題:PHP adminUpdateBase類的具體用法?PHP adminUpdateBase怎麽用?PHP adminUpdateBase使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


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

示例1: __destruct

 public function __destruct()
 {
     parent::__destruct();
     unset($this->topic);
     unset($this->team);
     unset($this->teamApi);
 }
開發者ID:h3len,項目名稱:Project,代碼行數:7,代碼來源:topic_update.php

示例2: __destruct

 public function __destruct()
 {
     parent::__destruct();
     unset($this->company);
     unset($this->site);
     unset($this->auth);
 }
開發者ID:h3len,項目名稱:Project,代碼行數:7,代碼來源:company_update.php

示例3: __construct

 public function __construct()
 {
     parent::__construct();
     //dao層
     $this->delivery_tracing_conf = $this->settings['trace_step'];
     //訂單狀態
     array(0 => "確認訂單", 1 => "打印票據", 2 => "打包", 3 => "出庫", 4 => "貨運中", 5 => "到達配送站", 6 => "指定配送人員", 7 => "配送", 8 => "簽收", 9 => "完成");
     $this->obj = new Core();
 }
開發者ID:h3len,項目名稱:Project,代碼行數:9,代碼來源:DeliveryTracingUpdate.php

示例4: upload_indexpic

 /**
  * 上傳外鏈索引圖片
  */
 public function upload_indexpic()
 {
     //外鏈索引圖片
     $material = parent::upload_indexpic();
     if (!empty($material) && is_array($material)) {
         $material['pic'] = array('host' => $material['host'], 'dir' => $material['dir'], 'filepath' => $material['filepath'], 'filename' => $material['filename']);
         $data = array('material_id' => $material['id'], 'name' => $material['name'], 'pic' => serialize($material['pic']), 'host' => $material['host'], 'dir' => $material['dir'], 'filepath' => $material['filepath'], 'filename' => $material['filename'], 'type' => $material['type'], 'mark' => $material['mark'], 'imgwidth' => $material['imgwidth'], 'imgheight' => $material['imgheight'], 'filesize' => $material['filesize'], 'create_time' => $material['create_time'], 'ip' => $material['ip'], 'remote_url' => $material['remote_url']);
         $this->obj->insert_data($data, 'material');
         $material['filesize'] = hg_bytes_to_size($material['filesize']);
         $material['success'] = true;
         $material['material_id'] = $material['id'];
         $this->addItem($material);
     } else {
         $return = array('error' => '文件上傳失敗');
         $this->addItem($return);
     }
     $this->output();
 }
開發者ID:h3len,項目名稱:Project,代碼行數:21,代碼來源:news_update.php

示例5: __destruct

 public function __destruct()
 {
     parent::__destruct();
     unset($this->cardcss);
 }
開發者ID:h3len,項目名稱:Project,代碼行數:5,代碼來源:card_css_update.php

示例6: __destruct

 public function __destruct()
 {
     parent::__destruct();
     unset($this->webapp);
 }
開發者ID:h3len,項目名稱:Project,代碼行數:5,代碼來源:webapp_update.php

示例7: __construct

 public function __construct()
 {
     parent::__construct();
 }
開發者ID:h3len,項目名稱:Project,代碼行數:4,代碼來源:outpush_action.php

示例8: __destruct

 public function __destruct()
 {
     parent::__destruct();
     unset($this->payconfig);
 }
開發者ID:h3len,項目名稱:Project,代碼行數:5,代碼來源:payconfig_update.php

示例9: __construct

 public function __construct()
 {
     parent::__construct();
     $this->banword = new banwordClass();
 }
開發者ID:h3len,項目名稱:Project,代碼行數:5,代碼來源:banword_update.php

示例10: __destruct

 public function __destruct()
 {
     parent::__destruct();
     unset($this->obj);
 }
開發者ID:h3len,項目名稱:Project,代碼行數:5,代碼來源:visit_update.php

示例11: drag_order

 public function drag_order()
 {
     parent::drag_order('circle', 'order_id');
     $this->addLogs('微博圈排序', '', '', '微博圈排序+' . $ids);
     $this->addItem($ids);
     $this->output();
 }
開發者ID:h3len,項目名稱:Project,代碼行數:7,代碼來源:wbcircle_update.php

示例12: __destruct

 public function __destruct()
 {
     parent::__destruct();
     unset($this->comment);
 }
開發者ID:h3len,項目名稱:Project,代碼行數:5,代碼來源:comment_update.php

示例13: __construct

 public function __construct()
 {
     parent::__construct();
     $this->Dao = new Dao();
 }
開發者ID:h3len,項目名稱:Project,代碼行數:5,代碼來源:SiteUpdate.php

示例14: __construct

 public function __construct()
 {
     parent::__construct();
     $this->obj = new Core();
 }
開發者ID:h3len,項目名稱:Project,代碼行數:5,代碼來源:DeliveryFeeUpdate.php

示例15: upload_indexpic

 /**
  * 上傳外鏈索引圖片
  */
 public function upload_indexpic()
 {
     //外鏈索引圖片
     $material = parent::upload_indexpic();
     if (!empty($material)) {
         $material['pic'] = json_encode(array('host' => $material['host'], 'dir' => $material['dir'], 'filepath' => $material['filepath'], 'filename' => $material['filename']));
         $this->addItem($material);
     } else {
         $return = array('error' => '文件上傳失敗');
         $this->addItem($return);
     }
     $this->output();
 }
開發者ID:h3len,項目名稱:Project,代碼行數:16,代碼來源:program_plan_update.php


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