You are here

public function SupportTicketTypeForm::form in Support Ticketing System 8

Gets the actual form array to be built.

Overrides EntityForm::form

See also

\Drupal\Core\Entity\EntityForm::processForm()

\Drupal\Core\Entity\EntityForm::afterBuild()

File

modules/support_ticket/src/SupportTicketTypeForm.php, line 53
Contains \Drupal\support_ticket\SupportTicketTypeForm.

Class

SupportTicketTypeForm
Form controller for support ticket type forms.

Namespace

Drupal\support_ticket

Code

public function form(array $form, FormStateInterface $form_state) {
  $form = parent::form($form, $form_state);
  $type = $this->entity;
  if ($this->operation == 'add') {
    $form['#title'] = SafeMarkup::checkPlain($this
      ->t('Add support ticket type'));
    $fields = $this->entityManager
      ->getBaseFieldDefinitions('support_ticket');

    // Create a support ticket with a fake bundle using the type's UUID so that we can
    // get the default values for workflow settings.
    $support_ticket = $this->entityManager
      ->getStorage('support_ticket')
      ->create(array(
      'support_ticket_type' => $type
        ->uuid(),
    ));
  }
  else {
    $form['#title'] = $this
      ->t('Edit %label support ticket type', array(
      '%label' => $type
        ->label(),
    ));
    $fields = $this->entityManager
      ->getFieldDefinitions('support_ticket', $type
      ->id());

    // Create a support_ticket to get the current values for workflow settings fields.
    $support_ticket = $this->entityManager
      ->getStorage('support_ticket')
      ->create(array(
      'support_ticket_type' => $type
        ->id(),
    ));
  }
  $form['name'] = array(
    '#title' => t('Name'),
    '#type' => 'textfield',
    '#default_value' => $type
      ->label(),
    '#description' => t('The human-readable name of this support ticket type. This text will be displayed as part of the list on the <em>Add support ticket</em> page. This name must be unique.'),
    // @todo how to refer to this page?
    '#required' => TRUE,
    '#size' => 30,
  );
  $form['type'] = array(
    '#type' => 'machine_name',
    '#default_value' => $type
      ->id(),
    '#maxlength' => EntityTypeInterface::BUNDLE_MAX_LENGTH,
    '#disabled' => $type
      ->isLocked(),
    '#machine_name' => array(
      'exists' => [
        'Drupal\\support_ticket\\Entity\\SupportTicketType',
        'load',
      ],
      'source' => array(
        'name',
      ),
    ),
    '#description' => t('A unique machine-readable name for this support ticket type. It must only contain lowercase letters, numbers, and underscores. This name will be used for constructing the URL of the %support-ticket-add page, in which underscores will be converted into hyphens.', array(
      '%support-ticket-add' => t('Add support ticket'),
    )),
  );
  $form['description'] = array(
    '#title' => t('Description'),
    '#type' => 'textarea',
    '#default_value' => $type
      ->getDescription(),
    '#description' => t('Describe this support ticket type. The text will be displayed on the <em>Add support ticket</em> page.'),
  );
  $form['additional_settings'] = array(
    // @todo, is this needed?
    '#type' => 'vertical_tabs',
    '#attached' => array(
      'library' => array(
        'support_ticket/drupal.support_ticket_types',
      ),
    ),
  );
  $form['submission'] = array(
    '#type' => 'details',
    '#title' => t('Submission form settings'),
    '#group' => 'additional_settings',
    '#open' => TRUE,
  );
  $form['submission']['title_label'] = array(
    '#title' => t('Title field label'),
    '#type' => 'textfield',
    '#default_value' => $fields['title']
      ->getLabel(),
    '#required' => TRUE,
  );
  $form['submission']['preview_mode'] = array(
    '#type' => 'radios',
    '#title' => t('Preview before submitting'),
    '#default_value' => $type
      ->getPreviewMode(),
    '#options' => array(
      DRUPAL_DISABLED => t('Disabled'),
      DRUPAL_OPTIONAL => t('Optional'),
      DRUPAL_REQUIRED => t('Required'),
    ),
  );
  $form['submission']['help'] = array(
    '#type' => 'textarea',
    '#title' => t('Explanation or submission guidelines'),
    '#default_value' => $type
      ->getHelp(),
    '#description' => t('This text will be displayed at the top of the page when creating or editing support tickets of this type.'),
  );
  $form['workflow'] = array(
    '#type' => 'details',
    '#title' => t('Publishing options'),
    '#group' => 'additional_settings',
  );
  $workflow_options = array(
    'status' => $support_ticket->status->value,
    'locked' => $support_ticket->locked->value,
    'revision' => $type
      ->isNewRevision(),
  );

  // Prepare workflow options to be used for 'checkboxes' form element.
  $keys = array_keys(array_filter($workflow_options));
  $workflow_options = array_combine($keys, $keys);
  $form['workflow']['options'] = array(
    '#type' => 'checkboxes',
    '#title' => t('Default options'),
    '#default_value' => $workflow_options,
    '#options' => array(
      'status' => t('Published'),
      'locked' => t('Locked'),
      'revision' => t('Create new revision'),
    ),
    '#description' => t('Users with the <em>Administer support tickets</em> permission will be able to override these options.'),
  );
  if ($this->moduleHandler
    ->moduleExists('language')) {
    $form['language'] = array(
      '#type' => 'details',
      '#title' => t('Language settings'),
      '#group' => 'additional_settings',
    );
    $language_configuration = ContentLanguageSettings::loadByEntityTypeBundle('support_ticket', $type
      ->id());
    $form['language']['language_configuration'] = array(
      '#type' => 'language_configuration',
      '#entity_information' => array(
        'entity_type' => 'support_ticket',
        'bundle' => $type
          ->id(),
      ),
      '#default_value' => $language_configuration,
    );
  }
  $form['display'] = array(
    '#type' => 'details',
    '#title' => t('Display settings'),
    '#group' => 'additional_settings',
  );
  $form['display']['display_submitted'] = array(
    '#type' => 'checkbox',
    '#title' => t('Display author and date information'),
    '#default_value' => $type
      ->displaySubmitted(),
    '#description' => t('Author username and publish date will be displayed.'),
  );
  return $form;
}