Same name and namespace in other branches
  1. 8.9.x core/modules/taxonomy/src/VocabularyForm.php \Drupal\taxonomy\VocabularyForm
  2. 9 core/modules/taxonomy/src/VocabularyForm.php \Drupal\taxonomy\VocabularyForm

Base form for vocabulary edit forms.

@internal

Hierarchy

Expanded class hierarchy of VocabularyForm

File

core/modules/taxonomy/src/VocabularyForm.php, line 17

Namespace

Drupal\taxonomy
View source
class VocabularyForm extends BundleEntityFormBase {

  /**
   * The vocabulary storage.
   *
   * @var \Drupal\taxonomy\VocabularyStorageInterface
   */
  protected $vocabularyStorage;

  /**
   * Constructs a new vocabulary form.
   *
   * @param \Drupal\taxonomy\VocabularyStorageInterface $vocabulary_storage
   *   The vocabulary storage.
   */
  public function __construct(VocabularyStorageInterface $vocabulary_storage) {
    $this->vocabularyStorage = $vocabulary_storage;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {
    return new static($container
      ->get('entity_type.manager')
      ->getStorage('taxonomy_vocabulary'));
  }

  /**
   * {@inheritdoc}
   */
  public function buildEntity(array $form, FormStateInterface $form_state) {

    /** @var \Drupal\taxonomy\VocabularyInterface $entity */
    $entity = parent::buildEntity($form, $form_state);

    // The description cannot be an empty string.
    if (trim($form_state
      ->getValue('description')) === '') {
      $entity
        ->set('description', NULL);
    }
    return $entity;
  }

  /**
   * {@inheritdoc}
   */
  public function form(array $form, FormStateInterface $form_state) {
    $vocabulary = $this->entity;
    if ($vocabulary
      ->isNew()) {
      $form['#title'] = $this
        ->t('Add vocabulary');
    }
    else {
      $form['#title'] = $this
        ->t('Edit vocabulary');
    }
    $form['name'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('Name'),
      '#default_value' => $vocabulary
        ->label(),
      '#maxlength' => 255,
      '#required' => TRUE,
    ];
    $form['vid'] = [
      '#type' => 'machine_name',
      '#default_value' => $vocabulary
        ->id(),
      '#maxlength' => EntityTypeInterface::BUNDLE_MAX_LENGTH,
      '#machine_name' => [
        'exists' => [
          $this,
          'exists',
        ],
        'source' => [
          'name',
        ],
      ],
    ];
    $form['description'] = [
      '#type' => 'textfield',
      '#title' => $this
        ->t('Description'),
      '#default_value' => $vocabulary
        ->getDescription(),
    ];
    $form['revision'] = [
      '#type' => 'checkbox',
      '#title' => $this
        ->t('Create new revision'),
      '#default_value' => $vocabulary
        ->shouldCreateNewRevision(),
      '#description' => $this
        ->t('Create a new revision by default for this vocabulary.'),
    ];

    // $form['langcode'] is not wrapped in an
    // if ($this->moduleHandler->moduleExists('language')) check because the
    // language_select form element works also without the language module being
    // installed. https://www.drupal.org/node/1749954 documents the new element.
    $form['langcode'] = [
      '#type' => 'language_select',
      '#title' => $this
        ->t('Vocabulary language'),
      '#languages' => LanguageInterface::STATE_ALL,
      '#default_value' => $vocabulary
        ->language()
        ->getId(),
    ];
    if ($this->moduleHandler
      ->moduleExists('language')) {
      $form['default_terms_language'] = [
        '#type' => 'details',
        '#title' => $this
          ->t('Term language'),
        '#open' => TRUE,
      ];
      $form['default_terms_language']['default_language'] = [
        '#type' => 'language_configuration',
        '#entity_information' => [
          'entity_type' => 'taxonomy_term',
          'bundle' => $vocabulary
            ->id(),
        ],
        '#default_value' => ContentLanguageSettings::loadByEntityTypeBundle('taxonomy_term', $vocabulary
          ->id()),
      ];
    }

    // Set the hierarchy to "multiple parents" by default. This simplifies the
    // vocabulary form and standardizes the term form.
    $form['hierarchy'] = [
      '#type' => 'value',
      '#value' => '0',
    ];
    $form = parent::form($form, $form_state);
    return $this
      ->protectBundleIdElement($form);
  }

  /**
   * {@inheritdoc}
   */
  public function save(array $form, FormStateInterface $form_state) {
    $vocabulary = $this->entity;
    $vocabulary
      ->setNewRevision($form_state
      ->getValue([
      'revision',
    ]));

    // Prevent leading and trailing spaces in vocabulary names.
    $vocabulary
      ->set('name', trim($vocabulary
      ->label()));
    $status = $vocabulary
      ->save();
    $edit_link = $this->entity
      ->toLink($this
      ->t('Edit'), 'edit-form')
      ->toString();
    switch ($status) {
      case SAVED_NEW:
        $this
          ->messenger()
          ->addStatus($this
          ->t('Created new vocabulary %name.', [
          '%name' => $vocabulary
            ->label(),
        ]));
        $this
          ->logger('taxonomy')
          ->notice('Created new vocabulary %name.', [
          '%name' => $vocabulary
            ->label(),
          'link' => $edit_link,
        ]);
        $form_state
          ->setRedirectUrl($vocabulary
          ->toUrl('overview-form'));
        break;
      case SAVED_UPDATED:
        $this
          ->messenger()
          ->addStatus($this
          ->t('Updated vocabulary %name.', [
          '%name' => $vocabulary
            ->label(),
        ]));
        $this
          ->logger('taxonomy')
          ->notice('Updated vocabulary %name.', [
          '%name' => $vocabulary
            ->label(),
          'link' => $edit_link,
        ]);
        $form_state
          ->setRedirectUrl($vocabulary
          ->toUrl('collection'));
        break;
    }
    $form_state
      ->setValue('vid', $vocabulary
      ->id());
    $form_state
      ->set('vid', $vocabulary
      ->id());
  }

  /**
   * Determines if the vocabulary already exists.
   *
   * @param string $vid
   *   The vocabulary ID.
   *
   * @return bool
   *   TRUE if the vocabulary exists, FALSE otherwise.
   */
  public function exists($vid) {
    $action = $this->vocabularyStorage
      ->load($vid);
    return !empty($action);
  }

}

Members

Name Modifiers Type Description Overridessort ascending
FormBase::validateForm public function Form validation handler. Overrides FormInterface::validateForm 47
EntityForm::actions protected function Returns an array of supported actions for the current entity form. 24
EntityForm::submitForm public function This is the default entity object builder function. It is called before any other submit handler to build the new entity object to be used by the following submit handlers. At this point of the form workflow the entity is validated and the form stateā€¦ Overrides FormInterface::submitForm 15
EntityForm::getFormId public function Returns a unique string identifying the form. Overrides FormInterface::getFormId 12
EntityForm::buildForm public function Form constructor. Overrides FormInterface::buildForm 10
EntityForm::copyFormValuesToEntity protected function Copies top-level form values to entity properties. 9
MessengerTrait::messenger public function Gets the messenger. 8
EntityForm::$entity protected property The entity being used by this form. 8
MessengerTrait::$messenger protected property The messenger. 8
EntityForm::getBaseFormId public function Returns a string identifying the base form. Overrides BaseFormIdInterface::getBaseFormId 4
EntityForm::$entityTypeManager protected property The entity type manager. 3
StringTranslationTrait::$stringTranslation protected property The string translation service. 3
EntityForm::init protected function Initialize the form state and the entity before the first form build. 2
EntityForm::prepareEntity protected function Prepares the entity object before the form is built first. 2
FormBase::configFactory protected function Gets the config factory for this form. 2
DependencySerializationTrait::__sleep public function 2
DependencySerializationTrait::__wakeup public function 2
EntityForm::$moduleHandler protected property The module handler service. 2
FormBase::$configFactory protected property The config factory. 2
EntityForm::getEntityFromRouteMatch public function Determines which entity will be used by this form from a RouteMatch object. Overrides EntityFormInterface::getEntityFromRouteMatch 1
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 1
FormBase::$requestStack protected property The request stack. 1
RedirectDestinationTrait::$redirectDestination protected property The redirect destination service. 1
VocabularyForm::__construct public function Constructs a new vocabulary form.
VocabularyForm::create public static function Instantiates a new instance of this class. Overrides FormBase::create
VocabularyForm::form public function Gets the actual form array to be built. Overrides EntityForm::form
VocabularyForm::save public function Form submission handler for the 'save' action. Overrides EntityForm::save
VocabularyForm::exists public function Determines if the vocabulary already exists.
VocabularyForm::buildEntity public function Builds an updated entity object based upon the submitted form values. Overrides EntityForm::buildEntity
BundleEntityFormBase::protectBundleIdElement protected function Protects the bundle entity's ID property's form element against changes.
EntityForm::setOperation public function Sets the operation for this form. Overrides EntityFormInterface::setOperation
EntityForm::processForm public function Process callback: assigns weights and hides extra fields.
EntityForm::afterBuild public function Form element #after_build callback: Updates the entity with submitted data.
EntityForm::actionsElement protected function Returns the action form element for the current entity form.
EntityForm::getEntity public function Gets the form entity. Overrides EntityFormInterface::getEntity
EntityForm::setEntity public function Sets the form entity. Overrides EntityFormInterface::setEntity
EntityForm::prepareInvokeAll protected function Invokes the specified prepare hook variant.
EntityForm::getOperation public function Gets the operation identifying the form. Overrides EntityFormInterface::getOperation
EntityForm::setModuleHandler public function Sets the module handler for this form. Overrides EntityFormInterface::setModuleHandler
EntityForm::setEntityTypeManager public function Sets the entity type manager for this form. Overrides EntityFormInterface::setEntityTypeManager
FormBase::config protected function Retrieves a configuration object.
FormBase::setConfigFactory public function Sets the config factory for this form.
FormBase::resetConfigFactory public function Resets the configuration factory.
FormBase::getRequest protected function Gets the request object.
FormBase::getRouteMatch protected function Gets the route match.
FormBase::setRequestStack public function Sets the request stack object to use.
FormBase::currentUser protected function Gets the current user.
FormBase::redirect protected function Returns a redirect response object for the specified route.
FormBase::container private function Returns the service container.
FormBase::logger protected function Gets the logger for a specific channel.
LoggerChannelTrait::getLogger protected function Gets the logger for a specific channel.
LoggerChannelTrait::setLoggerFactory public function Injects the logger channel factory.
MessengerTrait::setMessenger public function Sets the messenger.
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::t protected function Translates a string to the current language or to a given language.
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.
VocabularyForm::$vocabularyStorage protected property The vocabulary storage.
EntityForm::$operation protected property The name of the current operation.
FormBase::$routeMatch protected property The route match.
DependencySerializationTrait::$_serviceIds protected property
DependencySerializationTrait::$_entityStorages protected property
LoggerChannelTrait::$loggerFactory protected property The logger channel factory service.