当前位置: 首页>>代码示例>>PHP>>正文


PHP nodeFrm::__construct方法代码示例

本文整理汇总了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');
 }
开发者ID:h3len,项目名称:Project,代码行数:7,代码来源:ticket_node_update.php

示例2: __construct

 public function __construct()
 {
     //检测是否具有管理权限
     parent::__construct();
     include CUR_CONF_PATH . 'lib/special_sort.class.php';
     $this->obj = new specialSort();
 }
开发者ID:h3len,项目名称:Project,代码行数:7,代码来源:special_sort_update.php

示例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();
 }
开发者ID:h3len,项目名称:Project,代码行数:14,代码来源:site.php

示例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();
 }
开发者ID:h3len,项目名称:Project,代码行数:7,代码来源:scenic.php

示例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();
 }
开发者ID:h3len,项目名称:Project,代码行数:7,代码来源:content_column_node.php

示例6: __construct

 public function __construct()
 {
     parent::__construct();
     $this->setNodeTable('catalog');
     $this->setNodeVar('article_sort');
     $this->setExtraNodeTreeFields(array('issue_id'));
 }
开发者ID:h3len,项目名称:Project,代码行数:7,代码来源:article_sort_update.php

示例7: __construct

 public function __construct()
 {
     parent::__construct();
     $this->setNodeTable('sort');
     $this->setNodeVar('lbs_node');
     $this->sort = new ClassLBSSort();
 }
开发者ID:h3len,项目名称:Project,代码行数:7,代码来源:lbs_node_update.php

示例8: __construct

 public function __construct()
 {
     parent::__construct();
     $this->auth = new Auth();
     $this->publishcontent = new publishcontent();
     $this->pubconfig = new publishconfig();
 }
开发者ID:h3len,项目名称:Project,代码行数:7,代码来源:publishcontent.php

示例9: __construct

 public function __construct()
 {
     parent::__construct();
     $this->setNodeTable('sort');
     $this->setNodeVar('contribute_node');
     $this->sort = new contribute_sort();
 }
开发者ID:h3len,项目名称:Project,代码行数:7,代码来源:contribute_node.php

示例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/');
 }
开发者ID:h3len,项目名称:Project,代码行数:7,代码来源:vod_node.php

示例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();
 }
开发者ID:h3len,项目名称:Project,代码行数:8,代码来源:workload_node.php

示例12: __construct

 public function __construct()
 {
     parent::__construct();
     //检测是否具有配置权限
     $this->verify_setting_prms();
     $this->setNodeTable('cate_os');
     $this->setNodeVar('OSCateUpdate');
 }
开发者ID:h3len,项目名称:Project,代码行数:8,代码来源:OSCateUpdate.php

示例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();
 }
开发者ID:h3len,项目名称:Project,代码行数:8,代码来源:data_source.php

示例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();
 }
开发者ID:h3len,项目名称:Project,代码行数:8,代码来源:mode.php

示例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();
 }
开发者ID:h3len,项目名称:Project,代码行数:8,代码来源:special_sort.php


注:本文中的nodeFrm::__construct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。