コード例 #1
0
ファイル: live_backup_update.php プロジェクト: h3len/Project
 function __construct()
 {
     parent::__construct();
     require_once ROOT_PATH . 'lib/class/curl.class.php';
     $this->curl = new curl($this->settings['media_api']['host'], $this->settings['media_api']['dir']);
     $this->mVod = new curl($this->settings['livmedia_api']['host'], $this->settings['livmedia_api']['dir']);
 }
コード例 #2
0
ファイル: topic.php プロジェクト: h3len/Project
 function __construct()
 {
     parent::__construct();
     include ROOT_DIR . 'lib/user/user.class.php';
     $this->mUser = new user();
     /**/
 }
コード例 #3
0
ファイル: user.class.php プロジェクト: h3len/Project
 function __construct()
 {
     parent::__construct();
     $user = $this->input['user'] ? $this->input['user'] : hg_get_cookie('user');
     $pass = $this->input['pass'] ? $this->input['pass'] : hg_get_cookie('pass');
     $this->setUser($user, $pass);
 }
コード例 #4
0
ファイル: program_record_auto.php プロジェクト: h3len/Project
 function __construct()
 {
     parent::__construct();
     include_once ROOT_PATH . 'lib/class/curl.class.php';
     global $gGlobalConfig;
     $this->curl = new curl($gGlobalConfig['vodapi']['host'], $gGlobalConfig['vodapi']['dir'], $gGlobalConfig['vodapi']['token']);
 }
コード例 #5
0
ファイル: line_channel_update.php プロジェクト: h3len/Project
 public function __construct()
 {
     parent::__construct();
     include_once ROOT_PATH . 'lib/class/recycle.class.php';
     $this->recycle = new recycle();
     $this->logs = new logs();
 }
コード例 #6
0
ファイル: change_plan.class.php プロジェクト: h3len/Project
 public function __construct()
 {
     parent::__construct();
     $this->mDates = date('2012-01-01');
     include_once ROOT_PATH . 'lib/class/recycle.class.php';
     $this->recycle = new recycle();
 }
コード例 #7
0
ファイル: interview.php プロジェクト: h3len/Project
 public function __construct()
 {
     parent::__construct();
     $this->interview = new interview();
     $this->pic = new pic();
     $this->check = new check();
 }
コード例 #8
0
ファイル: workbench.class.php プロジェクト: h3len/Project
 function __construct()
 {
     parent::__construct();
     global $gGlobalConfig;
     include_once ROOT_PATH . 'lib/class/curl.class.php';
     $this->curl = new curl($gGlobalConfig['App_workbench']['host'], $gGlobalConfig['App_workbench']['dir']);
 }
コード例 #9
0
ファイル: report_update.php プロジェクト: h3len/Project
 function __construct()
 {
     parent::__construct();
     require_once CUR_CONF_PATH . 'lib/reportLib.class.php';
     require_once ROOT_PATH . 'lib/class/team.class.php';
     require_once ROOT_PATH . 'lib/class/activity.class.php';
 }
コード例 #10
0
ファイル: video_update.php プロジェクト: h3len/Project
 function __construct()
 {
     parent::__construct();
     //导入视频接口调用封装类
     include_once ROOT_PATH . '/lib/user/user.class.php';
     $this->mUser = new user();
 }
コード例 #11
0
ファイル: vote_question.class.php プロジェクト: h3len/Project
 public function __construct()
 {
     parent::__construct();
     include_once ROOT_PATH . 'lib/class/material.class.php';
     include_once ROOT_PATH . 'lib/class/livmedia.class.php';
     $this->mMaterial = new material();
 }
コード例 #12
0
ファイル: advert.php プロジェクト: h3len/Project
 function __construct()
 {
     parent::__construct();
     include_once ROOT_PATH . 'api/lib/video.class.php';
     $this->mVideo = new video();
     include_once ROOT_PATH . 'lib/user/user.class.php';
     $this->mUser = new user();
 }
コード例 #13
0
ファイル: thread_update.php プロジェクト: h3len/Project
 public function __construct()
 {
     parent::__construct();
     include_once ROOT_PATH . 'lib/class/recycle.class.php';
     include_once ROOT_PATH . 'lib/class/publishconfig.class.php';
     $this->recycle = new recycle();
     $this->publish_column = new publishconfig();
 }
コード例 #14
0
ファイル: channel_chg_plan.php プロジェクト: h3len/Project
 function __construct()
 {
     parent::__construct();
     require_once ROOT_PATH . 'lib/class/curl.class.php';
     $this->mBackup = new curl($this->settings['liv_mms_api']['host'], $this->settings['liv_mms_api']['dir']);
     require_once CUR_CONF_PATH . 'lib/channel.class.php';
     $this->mChannel = new channels();
 }
コード例 #15
0
ファイル: comment_list.php プロジェクト: h3len/Project
 function __construct()
 {
     parent::__construct();
     include_once ROOT_DIR . 'lib/user/user.class.php';
     include_once ROOT_DIR . 'lib/class/status.class.php';
     $this->mUser = new user();
     $this->mStatus = new status();
 }
コード例 #16
0
 public function __construct()
 {
     parent::__construct();
     require_once CUR_CONF_PATH . 'lib/interactive_member.class.php';
     $this->mInteractiveMember = new interactiveMember();
     require_once ROOT_PATH . 'lib/class/share.class.php';
     $this->mShare = new share();
 }
コード例 #17
0
ファイル: group.php プロジェクト: h3len/Project
 public function __construct()
 {
     parent::__construct();
     $this->group = new group();
     //圈子类
     $this->thread = new thread();
     //帖子类
 }
コード例 #18
0
ファイル: destroy_batch.php プロジェクト: h3len/Project
 function __construct()
 {
     parent::__construct();
     include_once ROOT_DIR . 'lib/user/user.class.php';
     $this->mUser = new user();
     include_once ROOT_PATH . 'lib/class/comment.class.php';
     $this->mComment = new comment();
 }
コード例 #19
0
ファイル: basic_info_update.php プロジェクト: h3len/Project
 public function __construct()
 {
     parent::__construct();
     require_once CUR_CONF_PATH . 'lib/basic_info.class.php';
     $this->mBasicInfo = new basicInfo();
     require_once CUR_CONF_PATH . 'lib/interactive_program.class.php';
     $this->mInteractiveProgram = new interactiveProgram();
 }
コード例 #20
0
ファイル: get_user.class.php プロジェクト: h3len/Project
 public function __construct()
 {
     parent::__construct();
     include_once CUR_CONF_PATH . 'lib/share.class.php';
     $this->obj = new share();
     include_once CUR_CONF_PATH . 'lib/public.class.php';
     $this->pub = new publicapi();
 }
コード例 #21
0
ファイル: lottery.php プロジェクト: h3len/Project
 function __construct()
 {
     parent::__construct();
     $this->appid = intval($this->input['appid']);
     $this->appkey = trim($this->input['appkey']);
     $this->access_token = trim($this->input['access_token']);
     $this->device_token = trim($this->input['device_token']);
     $this->curl = new curl($this->settings['App_lottery']['host'], $this->settings['App_lottery']['dir']);
 }
コード例 #22
0
ファイル: block_set.php プロジェクト: h3len/Project
 /**
  * 构造函数
  * @author repheal
  * @category hogesoft
  * @copyright hogesoft
  * @include site.class.php
  */
 public function __construct()
 {
     parent::__construct();
     $this->pub_config = new publishconfig();
     include CUR_CONF_PATH . 'lib/block_set.class.php';
     $this->obj = new block_set();
     include CUR_CONF_PATH . 'lib/block.class.php';
     $this->block = new block();
 }
コード例 #23
0
ファイル: publish.php プロジェクト: h3len/Project
 /**
  * 构造函数
  * @author repheal
  * @category hogesoft
  * @copyright hogesoft
  * @include news.class.php
  */
 public function __construct()
 {
     parent::__construct();
     include CUR_CONF_PATH . 'lib/publish.class.php';
     $this->obj = new publish();
     include CUR_CONF_PATH . 'lib/publishsys.class.php';
     $this->pubsys = new publishsys();
     $this->pubplan = new publishplan();
 }
コード例 #24
0
ファイル: email.class.php プロジェクト: h3len/Project
 public function __construct()
 {
     parent::__construct();
     require_once 'phpmailer.class.php';
     $this->phpmailer = new PHPMailer(true);
     $this->phpmailer->CharSet = 'utf-8';
     $this->phpmailer->WordWrap = 80;
     // set word wrap
 }
コード例 #25
0
ファイル: video_update.php プロジェクト: h3len/Project
 function __construct()
 {
     parent::__construct();
     //导入视频接口调用封装类
     include_once ROOT_PATH . '/lib/user/user.class.php';
     include_once ROOT_PATH . 'lib/class/recycle.class.php';
     $this->recycle = new recycle();
     $this->mUser = new user();
     $this->logs = new logs();
 }
コード例 #26
0
ファイル: addthread.php プロジェクト: h3len/Project
 function __construct()
 {
     parent::__construct();
     require_once 'lib/thread.class.php';
     $this->pubfunc = new thread();
     require_once 'lib/class_codeparse.php';
     $this->codeparse = new class_codeparse();
     include_once 'lib/group.class.php';
     $this->group = new group();
 }
コード例 #27
0
ファイル: dvr_checked.php プロジェクト: h3len/Project
 function __construct()
 {
     parent::__construct();
     require_once CUR_CONF_PATH . 'lib/livemms.class.php';
     $this->mLivemms = new livemms();
     require_once CUR_CONF_PATH . 'lib/dvr_checked_log.class.php';
     $this->mDvrCheckedLog = new dvrCheckedLog();
     require_once CUR_CONF_PATH . 'lib/server_config.class.php';
     $this->mServerConfig = new serverConfig();
 }
コード例 #28
0
ファイル: rules.php プロジェクト: h3len/Project
 function __construct()
 {
     parent::__construct();
     global $groupType;
     $this->setGroup =& $groupType;
     $this->appid = intval($this->input['appid']);
     $this->appkey = trim($this->input['appkey']);
     $this->access_token = trim($this->input['access_token']);
     $this->device_token = trim($this->input['device_token']);
     $this->curl = new curl($this->settings['App_rules']['host'], $this->settings['App_rules']['dir']);
 }
コード例 #29
0
ファイル: advert_update.php プロジェクト: h3len/Project
 function __construct()
 {
     parent::__construct();
     include_once ROOT_PATH . 'api/lib/video.class.php';
     $this->mVideo = new video();
     include_once ROOT_PATH . 'lib/user/user.class.php';
     $this->mUser = new user();
     include_once ROOT_PATH . 'lib/class/recycle.class.php';
     $this->recycle = new recycle();
     require_once ROOT_PATH . 'lib/class/logs.class.php';
     $this->logs = new logs();
 }
コード例 #30
0
ファイル: status_update.php プロジェクト: h3len/Project
 public function __construct()
 {
     parent::__construct();
     //调用user类 获取用户信息时用到
     include_once ROOT_DIR . 'lib/user/user.class.php';
     include_once ROOT_PATH . 'lib/class/recycle.class.php';
     //$this->user = new user();
     $this->recycle = new recycle();
     require_once ROOT_PATH . 'lib/class/logs.class.php';
     $this->logs = new logs();
     include_once ROOT_PATH . 'lib/class/publishconfig.class.php';
     $this->publish_column = new publishconfig();
 }