本文整理汇总了PHP中InitFrm::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP InitFrm::__construct方法的具体用法?PHP InitFrm::__construct怎么用?PHP InitFrm::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类InitFrm
的用法示例。
在下文中一共展示了InitFrm::__construct方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct()
{
$this->material = new material();
$this->verifycode = new verifycode();
$this->feedback = new feedback();
parent::__construct();
}
示例2: __construct
public function __construct()
{
parent::__construct();
$this->phpexcel = new PHPExcel();
$this->lbs = new ClassLBS();
$this->lbs_field = new lbs_field();
}
示例3: forcast
function __construct()
{
parent::__construct();
$this->forcast = new forcast();
$this->realtime = new realtime();
$this->extend = new extend();
}
示例4: __construct
public function __construct()
{
parent::__construct();
$this->weatherInfo = new get_weatherInfo();
$this->cityCode = new get_cityCode();
$this->pinyin = new getPinyinByChineseApi();
}
示例5: __construct
public function __construct()
{
parent::__construct();
$this->mode = new workload_mode();
$this->appset = new appset_mode();
$this->auth = new auth();
}
示例6: __construct
public function __construct()
{
parent::__construct();
$this->material = new material();
$this->member = new member();
$this->members = new members();
}
示例7: __construct
public function __construct()
{
parent::__construct();
$this->blacklist = new rongcloud_blacklist_mode();
$this->curl = new curl();
$this->applant = new applant();
}
示例8: __construct
public function __construct()
{
parent::__construct();
$this->auth = new Auth();
$this->publishcontent = new publishcontent();
$this->puscont = new publishcontent();
}
示例9: __construct
public function __construct($service = array())
{
parent::__construct();
if ($service) {
$this->init_env($service);
}
}
示例10: __construct
public function __construct($table = '')
{
parent::__construct();
if ($table) {
$this->set_table($table);
}
}
示例11: __construct
public function __construct()
{
parent::__construct();
include_once ROOT_PATH . 'lib/class/curl.class.php';
$this->mTvie = new curl();
// $this->mTvie->mPostContentType('string');
}
示例12: __construct
public function __construct()
{
parent::__construct();
$this->material = new material();
$this->opinion = new opinion();
$this->publish_column = new publishconfig();
$this->member = new member();
}
示例13: __construct
public function __construct()
{
parent::__construct();
include_once ROOT_PATH . 'lib/class/material.class.php';
$this->mMaterial = new material();
include_once ROOT_PATH . 'lib/class/recycle.class.php';
$this->recycle = new recycle();
}
示例14: __construct
public function __construct()
{
parent::__construct();
require_once ROOT_PATH . 'lib/class/auth.class.php';
$this->auth = new Auth();
include_once ROOT_PATH . 'lib/class/publishcontent.class.php';
$this->puc = new publishcontent();
}
示例15: __construct
public function __construct()
{
parent::__construct();
include_once ROOT_PATH . 'lib/class/material.class.php';
$this->mater = new material();
include_once ROOT_PATH . 'lib/class/publishconfig.class.php';
$this->publish_column = new publishconfig();
}