You are here

DblogClearLogForm.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/modules/dblog/src/Form/DblogClearLogForm.php

Namespace

Drupal\dblog\Form

File

core/modules/dblog/src/Form/DblogClearLogForm.php
View source
<?php

/**
 * @file
 * Contains \Drupal\dblog\Form\DblogClearLogForm.
 */
namespace Drupal\dblog\Form;

use Drupal\Core\Database\Connection;
use Drupal\Core\Form\FormBase;
use Drupal\Core\Form\FormStateInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;

/**
 * Provides the form that clears out the log.
 */
class DblogClearLogForm extends FormBase {

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

  /**
   * Constructs a new DblogClearLogForm.
   *
   * @param \Drupal\Core\Database\Connection $connection
   *   The database connection.
   */
  public function __construct(Connection $connection) {
    $this->connection = $connection;
  }

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

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

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state) {
    $form['dblog_clear'] = array(
      '#type' => 'details',
      '#title' => $this
        ->t('Clear log messages'),
      '#description' => $this
        ->t('This will permanently remove the log messages from the database.'),
    );
    $form['dblog_clear']['clear'] = array(
      '#type' => 'submit',
      '#value' => $this
        ->t('Clear log messages'),
    );
    return $form;
  }

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    $form_state
      ->setRedirect('dblog.confirm');
  }

}

Classes

Namesort descending Description
DblogClearLogForm Provides the form that clears out the log.