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