本文整理匯總了PHP中Drupal\Core\Entity\EntityStorageInterface::save方法的典型用法代碼示例。如果您正苦於以下問題:PHP EntityStorageInterface::save方法的具體用法?PHP EntityStorageInterface::save怎麽用?PHP EntityStorageInterface::save使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Drupal\Core\Entity\EntityStorageInterface
的用法示例。
在下文中一共展示了EntityStorageInterface::save方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: process
/**
* {@inheritdoc}
*/
public function process(FeedInterface $feed, ItemInterface $item, StateInterface $state)
{
$existing_entity_id = $this->existingEntityId($feed, $item);
$skip_existing = $this->configuration['update_existing'] == static::SKIP_EXISTING;
// Bulk load existing entities to save on db queries.
if ($skip_existing && $existing_entity_id) {
return;
}
// Delay building a new entity until necessary.
if ($existing_entity_id) {
$entity = $this->storageController->load($existing_entity_id);
}
$hash = $this->hash($item);
$changed = $existing_entity_id && $hash !== $entity->get('feeds_item')->hash;
// Do not proceed if the item exists, has not changed, and we're not
// forcing the update.
if ($existing_entity_id && !$changed && !$this->configuration['skip_hash_check']) {
return;
}
// Build a new entity.
if (!$existing_entity_id) {
$entity = $this->newEntity($feed);
}
try {
// Set field values.
$this->map($feed, $entity, $item);
$this->entityValidate($entity);
// This will throw an exception on failure.
$this->entitySaveAccess($entity);
// Set the values that we absolutely need.
$entity->get('feeds_item')->target_id = $feed->id();
$entity->get('feeds_item')->hash = $hash;
$entity->get('feeds_item')->imported = REQUEST_TIME;
// And... Save! We made it.
$this->storageController->save($entity);
// Track progress.
$existing_entity_id ? $state->updated++ : $state->created++;
} catch (\Exception $e) {
$state->failed++;
$state->setMessage($e->getMessage(), 'warning');
}
}