本文整理匯總了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));
}