本文整理匯總了PHP中adminBase類的典型用法代碼示例。如果您正苦於以下問題:PHP adminBase類的具體用法?PHP adminBase怎麽用?PHP adminBase使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了adminBase類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: __getConfig
public function __getConfig()
{
//獲取mediaserver的裏麵視頻類型的配置
if ($this->settings['App_mediaserver']) {
$curl = new curl($this->settings['App_mediaserver']['host'], $this->settings['App_mediaserver']['dir'] . 'admin/');
$curl->setReturnFormat('json');
$curl->initPostData();
$curl->addRequestData('a', '__getConfig');
$m_config = $curl->request('index.php');
}
if ($m_config && is_array($m_config)) {
$video_type = $m_config[0]['video_type']['allow_type'];
} else {
$video_type = $this->default_type;
}
$video_type_arr = explode(',', $video_type);
$flash_video_type = '';
foreach ($video_type_arr as $k => $v) {
$flash_video_type .= '*' . $v . ';';
}
$video_types = str_replace('.', '', $video_type);
$this->settings['flash_video_type'] = $flash_video_type;
$this->settings['video_type'] = $video_types;
parent::__getConfig();
}
示例2: update
public function update()
{
if (empty($this->input['id'])) {
$this->errorOutput(NO_ID);
}
if (empty($this->input['name'])) {
$this->errorOutput(NO_NAME);
}
$id = intval($this->input['id']);
$data = array('name' => trim($this->input['name']) ? trim($this->input['name']) : '', 'update_time' => TIMENOW);
$check = $this->obj->checkName($data['name'], $id);
if ($check) {
$this->errorOutput(NAME_EXIST);
}
$material = array();
$material = parent::upload_indexpic();
if ($material) {
$logo_info = array('host' => $material['host'], 'dir' => $material['dir'], 'filepath' => $material['filepath'], 'filename' => $material['filename']);
$data['logo_info'] = serialize($logo_info);
$data['logo_id'] = $material['id'];
}
$ret = $this->obj->update($data, $id);
$this->addItem($ret);
$this->output();
}
示例3: publishsys
function __construct()
{
parent::__construct();
include_once ROOT_PATH . 'lib/class/publishsys.class.php';
$this->pub_sys = new publishsys();
include CUR_CONF_PATH . 'lib/mkpublish.class.php';
$this->obj = new mkpublish();
}
示例4: displayEntries_change
public function displayEntries_change()
{
admin::$arrEntries = FBContestApplication::GetContestEntries();
$arrAnswerFieldsObjects = FBContestApplication::GetContestFields(admin::$arrEntries[0]);
self::$arrAnswerFields = array();
foreach ($arrAnswerFieldsObjects as $intIndex => $objAnswerField) {
self::$arrAnswerFields[$intIndex] = $objAnswerField->Name;
}
$this->strTemplate = $this->GetTemplateLoc('displayEntries');
}
示例5: __construct
{
var $transcode;
public function __construct()
{
parent::__construct();
$arr = array();
if ($this->input['host'] && $this->input['port']) {
$arr = array('host' => $this->input['host'], 'port' => $this->input['port']);
} else {
if ($this->settings['transcode']) {
$arr = $this->settings['transcode'];
} else {
$this->errorOutput(NO_SELECT_TRANSERVER);
}
}
示例6: update
public function update()
{
if (empty($this->input['id'])) {
$this->errorOutput(NO_ID);
}
if (!$this->user['user_id']) {
$this->errorOutput(NO_LOGIN);
}
/*
if(!$this->input['bill_id'])
{
$this->errorOutput(NO_BILLID);
}
*/
if (intval($this->input['sort_id']) < 0) {
$this->errorOutput(NO_SORT);
}
$id = intval($this->input['id']);
$data = array('sort_id' => intval($this->input['sort_id']), 'cost' => intval($this->input['cost']), 'cost_capital' => hg_cny(intval($this->input['cost'])), 'remark' => trim($this->input['remark']), 'is_ticket' => intval($this->input['is_ticket']), 'cost_time' => strtotime(trim($this->input['cost_time'])), 'state' => intval($this->input['state']), 'update_time' => TIMENOW);
if ($this->input['bill_id']) {
include_once CUR_CONF_PATH . 'lib/bill.class.php';
$this->bill = new bill();
$checkbool = $this->bill->checkLocked($this->input['bill_id']);
if ($checkbool) {
$this->errorOutput(THIS_IS_LOCKED);
}
}
$material = array();
$material = parent::upload_indexpic();
if ($material) {
$logo_info = array('host' => $material['host'], 'dir' => $material['dir'], 'filepath' => $material['filepath'], 'filename' => $material['filename']);
$data['img'] = serialize($logo_info);
$data['material_id'] = $material['id'];
}
$old_info = $this->obj->detail($id);
if ($old_info['state']) {
$this->reTotalSort(0, $old_info['sort_id']);
}
$ret = $this->obj->update($data, $id);
if ($ret['state']) {
$this->reTotalSort($data['sort_id'], 0);
}
if (intval($this->input['bill_id'])) {
$this->retotal(intval($this->input['bill_id']));
}
$this->addItem($ret);
$this->output();
}
示例7: update
public function update()
{
if (empty($this->input['id'])) {
$this->errorOutput(NO_ID);
}
if (!$this->user['user_id']) {
$this->errorOutput(NO_LOGIN);
}
if (intval($this->input['sort_id']) < 0) {
$this->errorOutput(NO_SORT);
}
$id = intval($this->input['id']);
$data = array('sort_id' => intval($this->input['sort_id']), 'remark' => trim($this->input['remark']), 'start_time' => strtotime(trim($this->input['start_time'])), 'end_time' => strtotime(trim($this->input['end_time'])), 'state' => intval($this->input['state']), 'update_time' => TIMENOW);
$material = array();
$material = parent::upload_indexpic();
if ($material) {
$logo_info = array('host' => $material['host'], 'dir' => $material['dir'], 'filepath' => $material['filepath'], 'filename' => $material['filename']);
$data['img'] = serialize($logo_info);
//$data['material_id'] = $material['id'];
}
//$old_info = $this->obj->detail($id);
/***
if($old_info['state'])//原來是審核通過,不管是否換sort,舊的sort 先-1
{
$this->reTotalSort(0,$old_info['sort_id']);
} **/
$ret = $this->obj->update($data, $id);
/***
if($ret['state'])//如果新的審核通過,不管是否換sort,當前的sort +1
{
$this->reTotalSort($data['sort_id'],0);
}
//if(intval($this->input['bill_id']))
//{
//$this->retotal(intval($this->input['bill_id']));
//}
**/
//print_r($data);
$this->addItem($ret);
$this->output();
}
示例8: __destruct
public function __destruct()
{
parent::__destruct();
unset($this->mUser);
}
示例9: __construct
public function __construct()
{
parent::__construct();
}
示例10: __construct
public function __construct()
{
parent::__construct();
$this->material = new material();
}
示例11: __construct
public function __construct()
{
parent::__construct();
$this->snap = new SnapFromVideo();
$this->material = new material();
}
示例12:
function drag_order()
{
parent::drag_order('templates', 'order_id');
$this->addItem('succss');
$this->output();
}
示例13: activityLib
{
parent::__construct();
require_once '../lib/activity.class.php';
$this->libactivity = new activityLib();
}
示例14: __construct
public function __construct()
{
parent::__construct();
$this->mode = new live_time_shift_mode();
}
示例15: __construct
public function __construct()
{
parent::__construct();
$this->mode = new TVPlayMode();
}