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


PHP ORM::_initialize方法代码示例

本文整理汇总了PHP中ORM::_initialize方法的典型用法代码示例。如果您正苦于以下问题:PHP ORM::_initialize方法的具体用法?PHP ORM::_initialize怎么用?PHP ORM::_initialize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ORM的用法示例。


在下文中一共展示了ORM::_initialize方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 public function __construct($tablename)
 {
     $this->_table_name = $tablename;
     $this->_object_name = $tablename;
     $this->_actual_model_name = 'model_' . strtolower($tablename);
     parent::_initialize();
 }
开发者ID:lz1988,项目名称:stourwebcms,代码行数:7,代码来源:tongyong.php

示例2: _initialize

 /**
  * Initialize CRUD and ORM
  */
 public function _initialize()
 {
     foreach ($this->items() as $item) {
         $item->initialize($this);
     }
     $this->observe_change();
     parent::_initialize();
 }
开发者ID:raku,项目名称:MorCMS,代码行数:11,代码来源:crud.php

示例3: _initialize

 protected function _initialize()
 {
     parent::_initialize();
     if ($this->_filter_mode === NULL) {
         $this->_filter_mode = self::$filter_mode;
     }
     if ($this->_site_id === NULL) {
         $this->_site_id = self::$site_id;
     }
 }
开发者ID:greor,项目名称:satin-spb,代码行数:10,代码来源:base.php

示例4: _initialize

 protected function _initialize()
 {
     parent::_initialize();
     // We have the ternary because loading a form via Model_Form could set the type to NULL
     $this->type = $this->getType() ? $this->getType() : $this->type;
 }
开发者ID:rrsc,项目名称:beansbooks,代码行数:6,代码来源:entity.php

示例5: _initialize

	/**
	 * Get table name from config
	 *
	 * @return  void
	 */
	protected function _initialize()
	{
		$this->_table_name = Kohana::config('dblog.table');
		parent::_initialize();
	}
开发者ID:nexeck,项目名称:kohana-dblog,代码行数:10,代码来源:log.php

示例6: _initialize

 protected function _initialize()
 {
     parent::_initialize();
     $this->_columns = Kohana::$config->load($this->_config)->columns;
     $this->_user_model = Kohana::$config->load($this->_config)->user_model;
 }
开发者ID:ryross,项目名称:A1,代码行数:6,代码来源:orm.php


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