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