本文整理匯總了PHP中Drupal\Core\Entity\EntityTypeInterface::setLinkTemplate方法的典型用法代碼示例。如果您正苦於以下問題:PHP EntityTypeInterface::setLinkTemplate方法的具體用法?PHP EntityTypeInterface::setLinkTemplate怎麽用?PHP EntityTypeInterface::setLinkTemplate使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Drupal\Core\Entity\EntityTypeInterface
的用法示例。
在下文中一共展示了EntityTypeInterface::setLinkTemplate方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: testEntityLinksJustEditForm
/**
* Tests additional edit links.
*/
public function testEntityLinksJustEditForm()
{
$this->baseEntityType->setLinkTemplate('edit-form', '/entity_test/{entity_test}/edit');
$data = $this->viewsData->getViewsData();
$this->assertFalse(isset($data['entity_test']['view_entity_test']));
$this->assertFalse(isset($data['entity_test']['delete_entity_test']));
$this->assertEquals('entity_link_edit', $data['entity_test']['edit_entity_test']['field']['id']);
}