ConfirmFormArrayPathTestForm.php in Zircon Profile 8
File
core/modules/system/tests/modules/form_test/src/ConfirmFormArrayPathTestForm.php
View source
<?php
namespace Drupal\form_test;
use Drupal\Core\Url;
class ConfirmFormArrayPathTestForm extends ConfirmFormTestForm {
public function getFormId() {
return 'form_test_confirm_array_path_test_form';
}
public function getCancelUrl() {
return new Url('form_test.route6', array(), array(
'query' => array(
'destination' => 'admin/config',
),
));
}
public function getCancelText() {
return $this
->t('ConfirmFormArrayPathTestForm::getCancelText().');
}
}