本文整理匯總了PHP中Cake\ORM\Entity::extractOriginal方法的典型用法代碼示例。如果您正苦於以下問題:PHP Entity::extractOriginal方法的具體用法?PHP Entity::extractOriginal怎麽用?PHP Entity::extractOriginal使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Cake\ORM\Entity
的用法示例。
在下文中一共展示了Entity::extractOriginal方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: _processAssociation
/**
* Updates counter cache for a single association
*
* @param \Cake\Event\Event $event Event instance.
* @param \Cake\ORM\Entity $entity Entity
* @param Association $assoc The association object
* @param array $settings The settings for for counter cache for this association
* @return void
*/
protected function _processAssociation(Event $event, Entity $entity, Association $assoc, array $settings)
{
$foreignKeys = (array) $assoc->foreignKey();
$primaryKeys = (array) $assoc->target()->primaryKey();
$countConditions = $entity->extract($foreignKeys);
$updateConditions = array_combine($primaryKeys, $countConditions);
$countOriginalConditions = $entity->extractOriginal($foreignKeys);
if ($countOriginalConditions !== []) {
$updateOriginalConditions = array_combine($primaryKeys, $countOriginalConditions);
}
foreach ($settings as $field => $config) {
if (is_int($field)) {
$field = $config;
$config = [];
}
if (!is_string($config) && is_callable($config)) {
$count = $config($event, $entity, $this->_table, false);
} else {
$count = $this->_getCount($config, $countConditions);
}
$assoc->target()->updateAll([$field => $count], $updateConditions);
if (isset($updateOriginalConditions)) {
if (!is_string($config) && is_callable($config)) {
$count = $config($event, $entity, $this->_table, true);
} else {
$count = $this->_getCount($config, $countOriginalConditions);
}
$assoc->target()->updateAll([$field => $count], $updateOriginalConditions);
}
}
}
示例2: testExtractOriginal
/**
* Test extractOriginal()
*
* @return void
*/
public function testExtractOriginal()
{
$entity = new Entity(['id' => 1, 'title' => 'original', 'body' => 'no'], ['markNew' => true]);
$entity->set('body', 'updated body');
$result = $entity->extractOriginal(['id', 'title', 'body']);
$expected = ['id' => 1, 'title' => 'original', 'body' => 'no'];
$this->assertEquals($expected, $result);
$result = $entity->extractOriginalChanged(['id', 'title', 'body']);
$expected = ['body' => 'no'];
$this->assertEquals($expected, $result);
}