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


PHP Jam::build_template方法代码示例

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


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

示例1: _load_model

 /**
  * Use the Jam::build_template() to return the model for the row in the results
  * @param  array $value
  * @return Jam_Model
  */
 protected function _load_model($value)
 {
     if (!$value) {
         return NULL;
     }
     $model = clone Jam::build_template($this->meta()->model(), $value);
     $model = $model->load_fields($value);
     return $model;
 }
开发者ID:Konro1,项目名称:pms,代码行数:14,代码来源:Collection.php

示例2: test_build_template

 public function test_build_template()
 {
     $model = Jam::build_template('test_author');
     $this->assertInstanceOf('Model_Test_Author', $model);
     $this->assertFalse($model->loaded());
     $model2 = Jam::build_template('test_author');
     $this->assertSame($model, $model2);
     $model = Jam::build_template('test_position');
     $this->assertInstanceOf('Model_Test_Position', $model);
     $model = Jam::build_template('test_position', array('model' => 'test_position_big'));
     $this->assertInstanceOf('Model_Test_Position_Big', $model);
 }
开发者ID:Konro1,项目名称:pms,代码行数:12,代码来源:CoreTest.php

示例3: build

 /**
  * Build a new Jam Model, add it to the collection and return the newly built model
  * @param  array $values set values on the new model
  * @return Jam_Model
  */
 public function build(array $values = NULL)
 {
     $item = clone Jam::build_template($this->model(), $values);
     if ($values) {
         $item->set($values);
     }
     $this->add($item);
     return $item;
 }
开发者ID:Konro1,项目名称:pms,代码行数:14,代码来源:Model.php


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