本文整理汇总了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();
}