本文整理匯總了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);
}
示例2: __destruct
public function __destruct()
{
parent::__destruct();
unset($this->company);
unset($this->site);
unset($this->auth);
}
示例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();
}
示例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();
}
示例5: __destruct
public function __destruct()
{
parent::__destruct();
unset($this->cardcss);
}
示例6: __destruct
public function __destruct()
{
parent::__destruct();
unset($this->webapp);
}
示例7: __construct
public function __construct()
{
parent::__construct();
}
示例8: __destruct
public function __destruct()
{
parent::__destruct();
unset($this->payconfig);
}
示例9: __construct
public function __construct()
{
parent::__construct();
$this->banword = new banwordClass();
}
示例10: __destruct
public function __destruct()
{
parent::__destruct();
unset($this->obj);
}
示例11: drag_order
public function drag_order()
{
parent::drag_order('circle', 'order_id');
$this->addLogs('微博圈排序', '', '', '微博圈排序+' . $ids);
$this->addItem($ids);
$this->output();
}
示例12: __destruct
public function __destruct()
{
parent::__destruct();
unset($this->comment);
}
示例13: __construct
public function __construct()
{
parent::__construct();
$this->Dao = new Dao();
}
示例14: __construct
public function __construct()
{
parent::__construct();
$this->obj = new Core();
}
示例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();
}