You are here

FlagEditForm.php in Flag 8.4

Namespace

Drupal\flag\Form

File

src/Form/FlagEditForm.php
View source
<?php

namespace Drupal\flag\Form;

use Drupal\Core\Form\FormStateInterface;

/**
 * Provides the flag edit form.
 *
 * Like FlagAddForm, this class derives from FlagFormBase. This class modifies
 * the submit button name.
 *
 * @see \Drupal\flag\Form\FlagFormBase
 */
class FlagEditForm extends FlagFormBase {

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state, $entity_type = NULL) {
    $form = parent::buildForm($form, $form_state);
    $form['global']['#disabled'] = TRUE;
    $form['global']['#description'] = $this
      ->t('The scope cannot be changed on existing flags.');
    return $form;
  }

  /**
   * {@inheritdoc}
   */
  protected function actions(array $form, FormStateInterface $form_state) {
    $actions = parent::actions($form, $form_state);
    $actions['submit']['#value'] = $this
      ->t('Save Flag');
    return $actions;
  }

}

Classes

Namesort descending Description
FlagEditForm Provides the flag edit form.