You are here

BlockContentTypeForm.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/modules/block_content/src/BlockContentTypeForm.php

File

core/modules/block_content/src/BlockContentTypeForm.php
View source
<?php

/**
 * @file
 * Contains \Drupal\block_content\BlockContentTypeForm.
 */
namespace Drupal\block_content;

use Drupal\Core\Entity\BundleEntityFormBase;
use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\Core\Form\FormStateInterface;
use Drupal\language\Entity\ContentLanguageSettings;

/**
 * Base form for category edit forms.
 */
class BlockContentTypeForm extends BundleEntityFormBase {

  /**
   * {@inheritdoc}
   */
  public function form(array $form, FormStateInterface $form_state) {
    $form = parent::form($form, $form_state);

    /* @var \Drupal\block_content\BlockContentTypeInterface $block_type */
    $block_type = $this->entity;
    if ($this->operation == 'add') {
      $form['#title'] = $this
        ->t('Add custom block type');
    }
    else {
      $form['#title'] = $this
        ->t('Edit %label custom block type', array(
        '%label' => $block_type
          ->label(),
      ));
    }
    $form['label'] = array(
      '#type' => 'textfield',
      '#title' => t('Label'),
      '#maxlength' => 255,
      '#default_value' => $block_type
        ->label(),
      '#description' => t("Provide a label for this block type to help identify it in the administration pages."),
      '#required' => TRUE,
    );
    $form['id'] = array(
      '#type' => 'machine_name',
      '#default_value' => $block_type
        ->id(),
      '#machine_name' => array(
        'exists' => '\\Drupal\\block_content\\Entity\\BlockContentType::load',
      ),
      '#maxlength' => EntityTypeInterface::BUNDLE_MAX_LENGTH,
    );
    $form['description'] = array(
      '#type' => 'textarea',
      '#default_value' => $block_type
        ->getDescription(),
      '#description' => t('Enter a description for this block type.'),
      '#title' => t('Description'),
    );
    $form['revision'] = array(
      '#type' => 'checkbox',
      '#title' => t('Create new revision'),
      '#default_value' => $block_type
        ->shouldCreateNewRevision(),
      '#description' => t('Create a new revision by default for this block type.'),
    );
    if ($this->moduleHandler
      ->moduleExists('language')) {
      $form['language'] = array(
        '#type' => 'details',
        '#title' => t('Language settings'),
        '#group' => 'additional_settings',
      );
      $language_configuration = ContentLanguageSettings::loadByEntityTypeBundle('block_content', $block_type
        ->id());
      $form['language']['language_configuration'] = array(
        '#type' => 'language_configuration',
        '#entity_information' => array(
          'entity_type' => 'block_content',
          'bundle' => $block_type
            ->id(),
        ),
        '#default_value' => $language_configuration,
      );
      $form['#submit'][] = 'language_configuration_element_submit';
    }
    $form['actions'] = array(
      '#type' => 'actions',
    );
    $form['actions']['submit'] = array(
      '#type' => 'submit',
      '#value' => t('Save'),
    );
    return $this
      ->protectBundleIdElement($form);
  }

  /**
   * {@inheritdoc}
   */
  public function save(array $form, FormStateInterface $form_state) {
    $block_type = $this->entity;
    $status = $block_type
      ->save();
    $edit_link = $this->entity
      ->link($this
      ->t('Edit'));
    $logger = $this
      ->logger('block_content');
    if ($status == SAVED_UPDATED) {
      drupal_set_message(t('Custom block type %label has been updated.', array(
        '%label' => $block_type
          ->label(),
      )));
      $logger
        ->notice('Custom block type %label has been updated.', array(
        '%label' => $block_type
          ->label(),
        'link' => $edit_link,
      ));
    }
    else {
      block_content_add_body_field($block_type
        ->id());
      drupal_set_message(t('Custom block type %label has been added.', array(
        '%label' => $block_type
          ->label(),
      )));
      $logger
        ->notice('Custom block type %label has been added.', array(
        '%label' => $block_type
          ->label(),
        'link' => $edit_link,
      ));
    }
    $form_state
      ->setRedirectUrl($this->entity
      ->urlInfo('collection'));
  }

}

Classes

Namesort descending Description
BlockContentTypeForm Base form for category edit forms.