You are here

FilterFormatEditForm.php in Zircon Profile 8.0

Same filename and directory in other branches
  1. 8 core/modules/filter/src/FilterFormatEditForm.php

Namespace

Drupal\filter

File

core/modules/filter/src/FilterFormatEditForm.php
View source
<?php

/**
 * @file
 * Contains \Drupal\filter\FilterFormatEditForm.
 */
namespace Drupal\filter;

use Drupal\Core\Form\FormStateInterface;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;

/**
 * Provides a form for adding a filter format.
 */
class FilterFormatEditForm extends FilterFormatFormBase {

  /**
   * {@inheritdoc}
   */
  public function form(array $form, FormStateInterface $form_state) {
    if (!$this->entity
      ->status()) {
      throw new NotFoundHttpException();
    }
    $form['#title'] = $this->entity
      ->label();
    $form = parent::form($form, $form_state);
    $form['roles']['#default_value'] = array_keys(filter_get_roles_by_format($this->entity));
    return $form;
  }

  /**
   * {@inheritdoc}
   */
  public function submitForm(array &$form, FormStateInterface $form_state) {
    parent::submitForm($form, $form_state);
    drupal_set_message($this
      ->t('The text format %format has been updated.', array(
      '%format' => $this->entity
        ->label(),
    )));
    return $this->entity;
  }

}

Classes

Namesort descending Description
FilterFormatEditForm Provides a form for adding a filter format.