EntityTestDeleteForm.php in Drupal 8
Same filename and directory in other branches
Namespace
Drupal\entity_testFile
core/modules/system/tests/modules/entity_test/src/EntityTestDeleteForm.phpView source
<?php
namespace Drupal\entity_test;
use Drupal\Core\Entity\ContentEntityDeleteForm;
use Drupal\Core\Url;
/**
* Provides the entity_test delete form.
*
* @internal
*/
class EntityTestDeleteForm extends ContentEntityDeleteForm {
/**
* {@inheritdoc}
*/
public function getCancelUrl() {
return new Url('<front>');
}
}
Classes
Name | Description |
---|---|
EntityTestDeleteForm | Provides the entity_test delete form. |