You are here

class AbjsTestDeleteConfirmForm in A/B Test JS 2.0.x

Same name and namespace in other branches
  1. 8 src/Form/AbjsTestDeleteConfirmForm.php \Drupal\abjs\Form\AbjsTestDeleteConfirmForm

Class for confirm delete test.

Hierarchy

Expanded class hierarchy of AbjsTestDeleteConfirmForm

1 string reference to 'AbjsTestDeleteConfirmForm'
abjs.routing.yml in ./abjs.routing.yml
abjs.routing.yml

File

src/Form/AbjsTestDeleteConfirmForm.php, line 14

Namespace

Drupal\abjs\Form
View source
class AbjsTestDeleteConfirmForm extends ConfirmFormBase {

  /**
   * The ID of the item to delete.
   *
   * @var string
   */
  protected $id;

  /**
   * Provides database connection service.
   *
   * @var \Drupal\Core\Database\Connection
   */
  protected $database;

  /**
   * Construct method.
   *
   * @param \Drupal\Core\Database\Connection $database
   *   Provides database connection service.
   */
  public function __construct(Connection $database) {
    $this->database = $database;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {
    return new static($container
      ->get('database'));
  }

  /**
   * {@inheritdoc}
   */
  public function getFormId() {
    return 'abjs_test_delete_confirm';
  }

  /**
   * {@inheritdoc}
   */
  public function getQuestion() {
    return $this
      ->t('Do you want to delete test %id?', [
      '%id' => $this->id,
    ]);
  }

  /**
   * {@inheritdoc}
   */
  public function getCancelUrl() {
    return new Url('abjs.test_admin');
  }

  /**
   * {@inheritdoc}
   */
  public function getDescription() {
    return $this
      ->t('This action cannot be undone.');
  }

  /**
   * {@inheritdoc}
   */
  public function getConfirmText() {
    return $this
      ->t('Delete');
  }

  /**
   * {@inheritdoc}
   */
  public function getCancelText() {
    return $this
      ->t('Cancel');
  }

  /**
   * Building form.
   *
   * @param array $form
   *   The form.
   * @param \Drupal\Core\Form\FormStateInterface $form_state
   *   The state of forms.
   * @param int $tid
   *   The ID of the item to be deleted.
   */
  public function buildForm(array $form, FormStateInterface $form_state, $tid = NULL) {
    $this->id = $tid;
    return parent::buildForm($form, $form_state);
  }

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    $this->database
      ->delete('abjs_test')
      ->condition('tid', $this->id)
      ->execute();
    $this->database
      ->delete('abjs_test_condition')
      ->condition('tid', $this->id)
      ->execute();
    $this->database
      ->delete('abjs_test_experience')
      ->condition('tid', $this->id)
      ->execute();
    $this
      ->messenger()
      ->addMessage($this
      ->t('Test %id has been deleted.', [
      '%id' => $this->id,
    ]));
    $form_state
      ->setRedirect('abjs.test_admin');
  }

}

Members

Namesort descending Modifiers Type Description Overrides
AbjsTestDeleteConfirmForm::$database protected property Provides database connection service.
AbjsTestDeleteConfirmForm::$id protected property The ID of the item to delete.
AbjsTestDeleteConfirmForm::buildForm public function Building form. Overrides ConfirmFormBase::buildForm
AbjsTestDeleteConfirmForm::create public static function Instantiates a new instance of this class. Overrides FormBase::create
AbjsTestDeleteConfirmForm::getCancelText public function Returns a caption for the link which cancels the action. Overrides ConfirmFormBase::getCancelText
AbjsTestDeleteConfirmForm::getCancelUrl public function Returns the route to go to if the user cancels the action. Overrides ConfirmFormInterface::getCancelUrl
AbjsTestDeleteConfirmForm::getConfirmText public function Returns a caption for the button that confirms the action. Overrides ConfirmFormBase::getConfirmText
AbjsTestDeleteConfirmForm::getDescription public function Returns additional text to display as a description. Overrides ConfirmFormBase::getDescription
AbjsTestDeleteConfirmForm::getFormId public function Returns a unique string identifying the form. Overrides FormInterface::getFormId
AbjsTestDeleteConfirmForm::getQuestion public function Returns the question to ask the user. Overrides ConfirmFormInterface::getQuestion
AbjsTestDeleteConfirmForm::submitForm public function Form submission handler. Overrides FormInterface::submitForm
AbjsTestDeleteConfirmForm::__construct public function Construct method.
ConfirmFormBase::getFormName public function Returns the internal name used to refer to the confirmation item. Overrides ConfirmFormInterface::getFormName
DependencySerializationTrait::$_entityStorages protected property
DependencySerializationTrait::$_serviceIds protected property
DependencySerializationTrait::__sleep public function 2
DependencySerializationTrait::__wakeup public function 2
FormBase::$configFactory protected property The config factory. 3
FormBase::$requestStack protected property The request stack. 1
FormBase::$routeMatch protected property The route match.
FormBase::config protected function Retrieves a configuration object.
FormBase::configFactory protected function Gets the config factory for this form. 3
FormBase::container private function Returns the service container.
FormBase::currentUser protected function Gets the current user.
FormBase::getRequest protected function Gets the request object.
FormBase::getRouteMatch protected function Gets the route match.
FormBase::logger protected function Gets the logger for a specific channel.
FormBase::redirect protected function Returns a redirect response object for the specified route.
FormBase::resetConfigFactory public function Resets the configuration factory.
FormBase::setConfigFactory public function Sets the config factory for this form.
FormBase::setRequestStack public function Sets the request stack object to use.
FormBase::validateForm public function Form validation handler. Overrides FormInterface::validateForm 72
LoggerChannelTrait::$loggerFactory protected property The logger channel factory service.
LoggerChannelTrait::getLogger protected function Gets the logger for a specific channel.
LoggerChannelTrait::setLoggerFactory public function Injects the logger channel factory.
MessengerTrait::$messenger protected property The messenger. 27
MessengerTrait::messenger public function Gets the messenger. 27
MessengerTrait::setMessenger public function Sets the messenger.
RedirectDestinationTrait::$redirectDestination protected property The redirect destination service. 1
RedirectDestinationTrait::getDestinationArray protected function Prepares a 'destination' URL query parameter for use with \Drupal\Core\Url.
RedirectDestinationTrait::getRedirectDestination protected function Returns the redirect destination service.
RedirectDestinationTrait::setRedirectDestination public function Sets the redirect destination service.
StringTranslationTrait::$stringTranslation protected property The string translation service. 4
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.