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


PHP CActiveRecord::instantiate方法代码示例

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


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

示例1: instantiate

 /**
  * @see		CActiveRecord::instantiate()
  */
 public function instantiate($attributes)
 {
     $res = parent::instantiate($attributes);
     // Set original attributes
     $res->originalAttributes = $attributes;
     return $res;
 }
开发者ID:cebe,项目名称:chive,代码行数:10,代码来源:ActiveRecord.php

示例2: instantiate

 protected function instantiate($attributes)
 {
     if (!isset($attributes['clase'])) {
         // Esto es para el caso del alta del modelo
         return parent::instantiate($attributes);
     }
     $className = $attributes['clase'];
     // Nombre del modelo a instanciar
     $model = new $className(null);
     // Null es necesario para llenar los campos con los valores que vienen de la base de datos
     return $model;
 }
开发者ID:juankie,项目名称:gestcb9git,代码行数:12,代码来源:Descuentocoseguro.php

示例3: instantiate

 protected function instantiate($attributes)
 {
     if (!isset($attributes['identidadtipo'])) {
         // Esto es para el caso del alta del modelo
         return parent::instantiate($attributes);
     }
     $classRecord = Entidadtipo::model()->findByPk($attributes['identidadtipo']);
     // Carga el modelo según el tipo
     if ($classRecord === null) {
         throw new CException('No se encuentra el tipo ' . $attributes['identidadtipo']);
     }
     $className = $classRecord->modelo;
     // Nombre del modelo a instanciar
     $model = new $className(null);
     // Null es necesario para llenar los campos con los valores que vienen de la base de datos
     return $model;
 }
开发者ID:juankie,项目名称:gestcb9git,代码行数:17,代码来源:Entidad.php

示例4: instantiate

 /**
  * @see CActiveRecord::instantiate()
  */
 protected function instantiate($attributes)
 {
     $record = parent::instantiate($attributes);
     $record->_old = $attributes;
     if ($this->_isReadingFromCache) {
         $record->setReadingFromCache();
     }
     return $record;
 }
开发者ID:njxjxj,项目名称:yorm,代码行数:12,代码来源:CEntity.php


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