本文整理匯總了PHP中nodeFrm::__construct方法的典型用法代碼示例。如果您正苦於以下問題:PHP nodeFrm::__construct方法的具體用法?PHP nodeFrm::__construct怎麽用?PHP nodeFrm::__construct使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類nodeFrm
的用法示例。
在下文中一共展示了nodeFrm::__construct方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: __construct
public function __construct()
{
parent::__construct();
//$this->verify_node_prms(array('_action'=>'manage'));
$this->setNodeTable('sort');
$this->setNodeVar('ticket_node');
}
示例2: __construct
public function __construct()
{
//檢測是否具有管理權限
parent::__construct();
include CUR_CONF_PATH . 'lib/special_sort.class.php';
$this->obj = new specialSort();
}
示例3: __construct
/**
* 構造函數
* @author repheal
* @category hogesoft
* @copyright hogesoft
* @include site.class.php
*/
public function __construct()
{
parent::__construct();
include CUR_CONF_PATH . "lib/common.php";
include CUR_CONF_PATH . 'lib/site.class.php';
$this->obj = new site();
}
示例4: __construct
public function __construct()
{
$this->mPrmsMethods = array('manage' => '管理', 'audit' => '審核', '_node' => array('name' => '景區分類', 'filename' => 'scenic_sort.php', 'node_uniqueid' => 'scenic_sort'));
parent::__construct();
include CUR_CONF_PATH . 'lib/scenic.class.php';
$this->obj = new scenic();
}
示例5: __construct
public function __construct()
{
parent::__construct();
$this->pub_config = new publishconfig();
include_once CUR_CONF_PATH . 'lib/column.class.php';
$this->column = new column();
}
示例6: __construct
public function __construct()
{
parent::__construct();
$this->setNodeTable('catalog');
$this->setNodeVar('article_sort');
$this->setExtraNodeTreeFields(array('issue_id'));
}
示例7: __construct
public function __construct()
{
parent::__construct();
$this->setNodeTable('sort');
$this->setNodeVar('lbs_node');
$this->sort = new ClassLBSSort();
}
示例8: __construct
public function __construct()
{
parent::__construct();
$this->auth = new Auth();
$this->publishcontent = new publishcontent();
$this->pubconfig = new publishconfig();
}
示例9: __construct
public function __construct()
{
parent::__construct();
$this->setNodeTable('sort');
$this->setNodeVar('contribute_node');
$this->sort = new contribute_sort();
}
示例10: __construct
public function __construct()
{
parent::__construct();
//$this->setNodeTable('vod_media_node');
//$this->setNodeVar('vod_media_node');
$this->curl = new curl($this->settings['App_livmedia']['host'], $this->settings['App_livmedia']['dir'] . 'admin/');
}
示例11: __construct
public function __construct()
{
parent::__construct();
require_once ROOT_PATH . 'lib/class/auth.class.php';
require_once CUR_CONF_PATH . 'lib/workload_mode.php';
$this->auth = new Auth();
$this->mode = new workload_mode();
}
示例12: __construct
public function __construct()
{
parent::__construct();
//檢測是否具有配置權限
$this->verify_setting_prms();
$this->setNodeTable('cate_os');
$this->setNodeVar('OSCateUpdate');
}
示例13: __construct
public function __construct()
{
parent::__construct();
include CUR_CONF_PATH . 'lib/data_source.class.php';
$this->obj = new dataSource();
require_once ROOT_PATH . 'lib/class/auth.class.php';
$this->auth = new Auth();
}
示例14: __construct
public function __construct()
{
parent::__construct();
include CUR_CONF_PATH . 'lib/mode.class.php';
$this->obj = new mode();
require_once ROOT_PATH . 'lib/class/material.class.php';
$this->material = new material();
}
示例15: __construct
public function __construct()
{
$this->setNodeTable('special_sort');
$this->setNodeVar('special_sort');
parent::__construct();
include CUR_CONF_PATH . 'lib/special_sort.class.php';
$this->obj = new specialSort();
}