本文整理汇总了PHP中Drupal\Core\Entity\EntityStorageInterface::loadUnchanged方法的典型用法代码示例。如果您正苦于以下问题:PHP EntityStorageInterface::loadUnchanged方法的具体用法?PHP EntityStorageInterface::loadUnchanged怎么用?PHP EntityStorageInterface::loadUnchanged使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Drupal\Core\Entity\EntityStorageInterface
的用法示例。
在下文中一共展示了EntityStorageInterface::loadUnchanged方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testMultiColumnNonRevisionableBaseField
/**
* Tests multi column non revisionable base field for revisionable entity.
*/
public function testMultiColumnNonRevisionableBaseField()
{
\Drupal::state()->set('entity_test.multi_column', TRUE);
\Drupal::entityDefinitionUpdateManager()->applyUpdates();
// Refresh the storage.
$this->mulRev = $this->entityManager->getStorage('entity_test_mulrev');
$user1 = $this->createUser();
// Create a test entity.
$entity = EntityTestMulRev::create(['name' => $this->randomString(), 'user_id' => $user1->id(), 'language' => 'en', 'non_rev_field' => 'Huron', 'description' => ['shape' => 'shape', 'color' => 'color']]);
$entity->save();
$entity = $this->mulRev->loadUnchanged($entity->id());
$expected = [['shape' => 'shape', 'color' => 'color']];
$this->assertEquals('Huron', $entity->get('non_rev_field')->value, 'Huron found on entity 1');
$this->assertEquals($expected, $entity->description->getValue());
}
示例2: testDelete
/**
* Tests deleting a payment status.
*/
protected function testDelete()
{
$payment_status_id = strtolower($this->randomMachineName());
/** @var \Drupal\payment\Entity\PaymentStatusInterface $status */
$status = $this->paymentStatusStorage->create([]);
$status->setId($payment_status_id)->save();
$path = 'admin/config/services/payment/status/delete/' . $payment_status_id;
$this->drupalGet($path);
$this->assertResponse(403);
$this->drupalLogin($this->drupalCreateUser(array('payment.payment_status.administer')));
$this->drupalGet($path);
$this->assertResponse(200);
$this->drupalPostForm(NULL, [], t('Delete'));
$this->assertNull($this->paymentStatusStorage->loadUnchanged($payment_status_id));
}