Example #1
0
 public function __construct()
 {
     parent::__construct();
     $this->Mstyle = new mood_style_mode();
     $this->Mood = new mood_mode();
     $this->publishcontent = new publishcontent();
 }
Example #2
0
 public function __construct()
 {
     parent::__construct();
     $this->mode = new member_friend_mode();
     $this->mMember = new member();
     $this->seekhelp = new seekhelp();
 }
Example #3
0
 function __construct()
 {
     parent::__construct();
     include ROOT_DIR . 'lib/user/user.class.php';
     $this->mUser = new user();
     /**/
 }
Example #4
0
 public function __construct()
 {
     parent::__construct();
     $this->mode = new member_friend_mode();
     $this->mMember = new member();
     $this->Members = new members();
 }
Example #5
0
 public function __construct()
 {
     parent::__construct();
     $this->city = new city();
     $this->forcast = new forcastWeather();
     $this->yesterday = new yesterdayWeather();
 }
Example #6
0
 public function __construct()
 {
     parent::__construct();
     global $gGlobalConfig;
     include_once ROOT_PATH . 'lib/class/curl.class.php';
     $this->curl = new curl($gGlobalConfig['App_shengwen']['host'], $gGlobalConfig['App_shengwen']['dir']);
 }
Example #7
0
 public function __construct()
 {
     parent::__construct();
     if (!$this->user['user_id']) {
         $this->errorOutput('NO USER_ID');
     }
 }
Example #8
0
 function __construct()
 {
     parent::__construct();
     require_once CUR_CONF_PATH . 'lib/livemms.class.php';
     $this->mLivemms = new livemms();
     $this->mLive = $this->settings['wowza']['dvr_server'];
 }
Example #9
0
 function __construct()
 {
     parent::__construct();
     $this->pm2token = PM25TOKEN;
     $this->mUpdateCache = $this->input['update_cache'] ? true : false;
     $this->initCity();
 }
Example #10
0
 function __construct()
 {
     $this->mNeedCheckIn = false;
     parent::__construct();
     include_once CUR_CONF_PATH . 'lib/program_shield.class.php';
     $this->mProgramShield = new programShield();
 }
Example #11
0
 function __construct()
 {
     parent::__construct();
     $this->mTimenow = time() * 1000;
     if (!$this->input['debug']) {
         header('Content-Type: application/vnd.apple.mpegurl');
     }
     $channel_stream = $this->input['channel_stream'];
     if ($channel_stream) {
         $tmp = explode('_', $channel_stream);
         $this->input['channel'] = $tmp[0];
         $this->input['stream'] = $tmp[1];
     }
     $channel_id = addslashes($this->input['channel']);
     if (!@(include CACHE_DIR . 'channel/' . $channel_id . '.php')) {
         $this->db = hg_ConnectDB();
         include_once CUR_CONF_PATH . 'lib/channel.class.php';
         $mChannel = new channel();
         $mChannel->cache_channel($channel_id);
         @(include CACHE_DIR . 'channel/' . $channel_id . '.php');
     }
     if (!$channel_info['channel']) {
         $this->errorOutput('NO_CHANNEL_NAME');
     }
     if (!$channel_info['channel']['status']) {
         $this->errorOutput('CHANNEL_STOP');
     }
     $this->mChannelinfo = $channel_info;
     if ($this->input['stream']) {
         if (!array_key_exists($this->input['stream'], $this->mChannelinfo['stream'])) {
             $this->errorOutput('NO_STREAM_NAME');
         }
     }
 }
Example #12
0
 public function __construct()
 {
     parent::__construct();
     $this->material = new material();
     $this->member = new member_mode();
     $this->members = new members();
 }
Example #13
0
 public function __construct()
 {
     parent::__construct();
     $this->obj = new Core();
     $this->stateconfig = $this->settings['order_status'];
     $this->trace_stepconfig = $this->settings['trace_step'];
 }
Example #14
0
 public function __construct()
 {
     parent::__construct();
     $this->mode = new member_friend_blacklist_mode();
     $this->Members = new members();
     $this->member_friend = new member_friend_mode();
 }
Example #15
0
 function __construct()
 {
     parent::__construct();
     require_once 'lib/activity.class.php';
     $this->libactivity = new activityLib();
     include_once ROOT_PATH . 'lib/class/team.class.php';
     $this->team = new team();
 }
Example #16
0
 public function __construct()
 {
     parent::__construct();
     $this->seekhelp = new ClassSeekhelp();
     $this->material = new material();
     $this->api = new section_mode();
     $this->blacklist = new seekhelp_blacklist_mode();
 }
Example #17
0
 public function __construct()
 {
     parent::__construct();
     $this->app_info_mode = new app_info_mode();
     $this->app_module = new appModule();
     $this->developer_mode = new developer_auth_mode();
     $this->app = new app();
 }
Example #18
0
 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();
 }
Example #19
0
 function __construct()
 {
     parent::__construct();
     $this->device_token = 'c84279cb08b981a0eb96246e8b81e677';
     //trim($this->input['device_token']);
     $this->appid = $this->input['appid'];
     $this->appkey = $this->input['appkey'];
 }
Example #20
0
 public function __construct()
 {
     parent::__construct();
     $this->mMember = new member();
     $this->mycount = new member_mycount_mode();
     $this->seekhelp = new seekhelp();
     $this->mfavorite = new member_favorite_mode();
     $this->mMemberInfo = new memberInfo();
 }
Example #21
0
 public function __construct()
 {
     parent::__construct();
     if (!$this->user['user_id']) {
         $this->errorOutput('NO LOGIN');
     }
     include_once CUR_CONF_PATH . '/lib/order.class.php';
     $this->obj = new Order();
 }
Example #22
0
 public function __construct()
 {
     parent::__construct();
     global $gGlobalConfig, $groupType;
     $this->setGroup =& $groupType;
     $this->access_token = $this->input['access_token'];
     include_once ROOT_PATH . 'lib/class/curl.class.php';
     $this->curl = new curl($gGlobalConfig['App_shengwen']['host'], $gGlobalConfig['App_shengwen']['dir']);
 }
Example #23
0
 public function __construct()
 {
     parent::__construct();
     include CUR_CONF_PATH . 'lib/notice.class.php';
     include_once ROOT_PATH . 'lib/class/auth.class.php';
     $this->mode = new notice();
     $this->auth = new auth();
     $this->members = new members();
 }
Example #24
0
 function __construct()
 {
     parent::__construct();
     include CUR_CONF_PATH . 'lib/vote_question.class.php';
     $this->mVoteQuestion = new voteQuestion();
     require_once ROOT_PATH . 'lib/class/verifycode.class.php';
     $this->mVerifyCode = new verifyCode();
     $this->user['user_id'] = intval($this->user['user_id']);
 }
Example #25
0
 public function __construct()
 {
     parent::__construct();
     $this->mode = new promote_info_mode();
     $this->_upYunOp = new UpYunOp();
     $this->company = new CompanyApi();
     $this->api = new app();
     $this->leancloud_user = new leancloud_user();
     $this->leancloud_app = new leancloud_app_mode();
 }
Example #26
0
 public function __construct()
 {
     parent::__construct();
     $this->mode = new attribute_value_mode();
     $this->ui_mode = new user_interface_mode();
     $this->app_module = new appModule();
     $this->app = new app();
     $this->app_material = new appMaterial();
     $this->new_extend = new new_extend();
 }
Example #27
0
 public function __construct()
 {
     parent::__construct();
     $this->curl = new curl();
     $this->applant = new applant();
     $this->rc = new rongcloud_mode();
     $this->rcinfo = new rongcloud_info_mode();
     $this->blacklist = new rongcloud_blacklist_mode();
     $this->members = new members();
     $this->group = new group_mode();
 }
Example #28
0
 public function __construct()
 {
     parent::__construct();
     if (!$this->settings['is_open_xs']) {
         $this->errorOutput('NOT_OPEN_XS');
     }
     if (!$this->input['bundle_id'] || !$this->input['module_id']) {
         $this->errorOutput('NO_APP_MODULE');
     }
     $this->filename = $this->input['bundle_id'] . '_' . $this->input['module_id'];
 }
Example #29
0
 public function __construct()
 {
     $this->mPrmsMethods = array('manger' => '管理');
     parent::__construct();
     //此处是为了判断视频库有没有安装
     if (!$this->settings['App_livmedia']['host']) {
         $this->errorOutput('please install livmedia first');
     }
     $this->curl = new curl($this->settings['App_livmedia']['host'], $this->settings['App_livmedia']['dir']);
     $this->obj = new videopoint();
 }
Example #30
0
 function __construct()
 {
     parent::__construct();
     require_once CUR_CONF_PATH . 'lib/channel.class.php';
     $this->mChannel = new channel();
     $ret_img_url = $this->mChannel->get_img_url();
     $this->mImgUrl = '';
     if (!empty($ret_img_url)) {
         $this->mImgUrl = $ret_img_url['define']['IMG_URL'];
     }
 }