public function DisplayOverview::form

Overrides Drupal\field_ui\OverviewBase::form().

Parameters

array $form: An associative array containing the structure of the form.

array $form_state: A reference to a keyed array containing the current state of the form.

Return value

array The array containing the complete form.

Overrides OverviewBase::form

File

drupal/core/modules/field_ui/lib/Drupal/field_ui/DisplayOverview.php, line 45
Definition of Drupal\field_ui\DisplayOverview.

Class

DisplayOverview
Field UI display overview form.

Namespace

Drupal\field_ui

Code

public function form(array $form, array &$form_state) {
  $form = parent::form($form, $form_state);

  // Gather type information.
  $instances = field_info_instances($this->entity_type, $this->bundle);
  $field_types = field_info_field_types();
  $extra_fields = field_info_extra_fields($this->entity_type, $this->bundle, 'display');
  $form_state += array(
    'formatter_settings_edit' => NULL,
  );
  $form += array(
    '#entity_type' => $this->entity_type,
    '#bundle' => $this->bundle,
    '#view_mode' => $this->view_mode,
    '#fields' => array_keys($instances),
    '#extra' => array_keys($extra_fields),
  );
  if (empty($instances) && empty($extra_fields)) {
    drupal_set_message(t('There are no fields yet added. You can add new fields on the <a href="@link">Manage fields</a> page.', array(
      '@link' => url($this->adminPath . '/fields'),
    )), 'warning');
    return $form;
  }
  $table = array(
    '#type' => 'field_ui_table',
    '#tree' => TRUE,
    '#header' => array(
      t('Field'),
      t('Weight'),
      t('Parent'),
      t('Label'),
      array(
        'data' => t('Format'),
        'colspan' => 3,
      ),
    ),
    '#regions' => $this
      ->getRegions(),
    '#parent_options' => drupal_map_assoc(array_keys($this
      ->getRegions())),
    '#attributes' => array(
      'class' => array(
        'field-ui-overview',
      ),
      'id' => 'field-display-overview',
    ),
    // Add Ajax wrapper.
    '#prefix' => '<div id="field-display-overview-wrapper">',
    '#suffix' => '</div>',
  );
  $field_label_options = array(
    'above' => t('Above'),
    'inline' => t('Inline'),
    'hidden' => t('<Hidden>'),
  );
  $extra_visibility_options = array(
    'content' => t('Visible'),
    'hidden' => t('Hidden'),
  );

  // Field rows.
  foreach ($instances as $name => $instance) {
    $field = field_info_field($instance['field_name']);
    if (isset($instance['display'][$this->view_mode])) {
      $display = $instance['display'][$this->view_mode];
    }
    else {
      $display = array(
        'type' => 'hidden',
        'label' => 'above',
        'weight' => 0,
      );
    }
    $table[$name] = array(
      '#attributes' => array(
        'class' => array(
          'draggable',
          'tabledrag-leaf',
        ),
      ),
      '#row_type' => 'field',
      '#region_callback' => 'field_ui_display_overview_row_region',
      '#js_settings' => array(
        'rowHandler' => 'field',
        'defaultFormatter' => $field_types[$field['type']]['default_formatter'],
      ),
      'human_name' => array(
        '#markup' => check_plain($instance['label']),
      ),
      'weight' => array(
        '#type' => 'textfield',
        '#title' => t('Weight for @title', array(
          '@title' => $instance['label'],
        )),
        '#title_display' => 'invisible',
        '#default_value' => $display['weight'],
        '#size' => 3,
        '#attributes' => array(
          'class' => array(
            'field-weight',
          ),
        ),
      ),
      'parent_wrapper' => array(
        'parent' => array(
          '#type' => 'select',
          '#title' => t('Label display for @title', array(
            '@title' => $instance['label'],
          )),
          '#title_display' => 'invisible',
          '#options' => $table['#parent_options'],
          '#empty_value' => '',
          '#attributes' => array(
            'class' => array(
              'field-parent',
            ),
          ),
          '#parents' => array(
            'fields',
            $name,
            'parent',
          ),
        ),
        'hidden_name' => array(
          '#type' => 'hidden',
          '#default_value' => $name,
          '#attributes' => array(
            'class' => array(
              'field-name',
            ),
          ),
        ),
      ),
      'label' => array(
        '#type' => 'select',
        '#title' => t('Label display for @title', array(
          '@title' => $instance['label'],
        )),
        '#title_display' => 'invisible',
        '#options' => $field_label_options,
        '#default_value' => $display['label'],
      ),
    );
    $formatter_options = field_ui_formatter_options($field['type']);
    $formatter_options['hidden'] = t('<Hidden>');
    $table[$name]['format'] = array(
      'type' => array(
        '#type' => 'select',
        '#title' => t('Formatter for @title', array(
          '@title' => $instance['label'],
        )),
        '#title_display' => 'invisible',
        '#options' => $formatter_options,
        '#default_value' => $display['type'],
        '#parents' => array(
          'fields',
          $name,
          'type',
        ),
        '#attributes' => array(
          'class' => array(
            'field-formatter-type',
          ),
        ),
      ),
      'settings_edit_form' => array(),
    );

    // Check the currently selected formatter, and merge persisted values for
    // formatter settings.
    if (isset($form_state['values']['fields'][$name]['type'])) {
      $display['type'] = $form_state['values']['fields'][$name]['type'];
    }
    if (isset($form_state['formatter_settings'][$name])) {
      $display['settings'] = $form_state['formatter_settings'][$name];
    }
    $formatter = $instance
      ->getFormatter($display);

    // Base button element for the various formatter settings actions.
    $base_button = array(
      '#submit' => array(
        array(
          $this,
          'multistepSubmit',
        ),
      ),
      '#ajax' => array(
        'callback' => array(
          $this,
          'multistepAjax',
        ),
        'wrapper' => 'field-display-overview-wrapper',
        'effect' => 'fade',
      ),
      '#field_name' => $name,
    );
    if ($form_state['formatter_settings_edit'] == $name) {

      // We are currently editing this field's formatter settings. Display the
      // settings form and submit buttons.
      $table[$name]['format']['settings_edit_form'] = array();
      if ($formatter) {
        $formatter_type_info = $formatter
          ->getDefinition();

        // Generate the settings form and allow other modules to alter it.
        $settings_form = $formatter
          ->settingsForm($form, $form_state);
        $context = array(
          'formatter' => $formatter,
          'field' => $field,
          'instance' => $instance,
          'view_mode' => $this->view_mode,
          'form' => $form,
        );
        drupal_alter('field_formatter_settings_form', $settings_form, $form_state, $context);
        if ($settings_form) {
          $table[$name]['format']['#cell_attributes'] = array(
            'colspan' => 3,
          );
          $table[$name]['format']['settings_edit_form'] = array(
            '#type' => 'container',
            '#attributes' => array(
              'class' => array(
                'field-formatter-settings-edit-form',
              ),
            ),
            '#parents' => array(
              'fields',
              $name,
              'settings_edit_form',
            ),
            'label' => array(
              '#markup' => t('Format settings:') . ' <span class="formatter-name">' . $formatter_type_info['label'] . '</span>',
            ),
            'settings' => $settings_form,
            'actions' => array(
              '#type' => 'actions',
              'save_settings' => $base_button + array(
                '#type' => 'submit',
                '#name' => $name . '_formatter_settings_update',
                '#value' => t('Update'),
                '#op' => 'update',
              ),
              'cancel_settings' => $base_button + array(
                '#type' => 'submit',
                '#name' => $name . '_formatter_settings_cancel',
                '#value' => t('Cancel'),
                '#op' => 'cancel',
                // Do not check errors for the 'Cancel' button, but make sure we
                // get the value of the 'formatter type' select.
                '#limit_validation_errors' => array(
                  array(
                    'fields',
                    $name,
                    'type',
                  ),
                ),
              ),
            ),
          );
          $table[$name]['#attributes']['class'][] = 'field-formatter-settings-editing';
        }
      }
    }
    else {
      $table[$name]['settings_summary'] = array();
      $table[$name]['settings_edit'] = array();
      if ($formatter) {

        // Display a summary of the current formatter settings, and (if the
        // summary is not empty) a button to edit them.
        $summary = $formatter
          ->settingsSummary();

        // Allow other modules to alter the summary.
        $context = array(
          'formatter' => $formatter,
          'field' => $field,
          'instance' => $instance,
          'view_mode' => $this->view_mode,
        );
        drupal_alter('field_formatter_settings_summary', $summary, $context);
        if ($summary) {
          $table[$name]['settings_summary'] = array(
            '#markup' => '<div class="field-formatter-summary">' . $summary . '</div>',
            '#cell_attributes' => array(
              'class' => array(
                'field-formatter-summary-cell',
              ),
            ),
          );
          $table[$name]['settings_edit'] = $base_button + array(
            '#type' => 'image_button',
            '#name' => $name . '_formatter_settings_edit',
            '#src' => 'core/misc/configure-dark.png',
            '#attributes' => array(
              'class' => array(
                'field-formatter-settings-edit',
              ),
              'alt' => t('Edit'),
            ),
            '#op' => 'edit',
            // Do not check errors for the 'Edit' button, but make sure we get
            // the value of the 'formatter type' select.
            '#limit_validation_errors' => array(
              array(
                'fields',
                $name,
                'type',
              ),
            ),
            '#prefix' => '<div class="field-formatter-settings-edit-wrapper">',
            '#suffix' => '</div>',
          );
        }
      }
    }
  }

  // Non-field elements.
  foreach ($extra_fields as $name => $extra_field) {
    $display = $extra_field['display'][$this->view_mode];
    $table[$name] = array(
      '#attributes' => array(
        'class' => array(
          'draggable',
          'tabledrag-leaf',
        ),
      ),
      '#row_type' => 'extra_field',
      '#region_callback' => 'field_ui_display_overview_row_region',
      '#js_settings' => array(
        'rowHandler' => 'field',
      ),
      'human_name' => array(
        '#markup' => check_plain($extra_field['label']),
      ),
      'weight' => array(
        '#type' => 'textfield',
        '#title' => t('Weight for @title', array(
          '@title' => $extra_field['label'],
        )),
        '#title_display' => 'invisible',
        '#default_value' => $display['weight'],
        '#size' => 3,
        '#attributes' => array(
          'class' => array(
            'field-weight',
          ),
        ),
      ),
      'parent_wrapper' => array(
        'parent' => array(
          '#type' => 'select',
          '#title' => t('Parents for @title', array(
            '@title' => $extra_field['label'],
          )),
          '#title_display' => 'invisible',
          '#options' => $table['#parent_options'],
          '#empty_value' => '',
          '#attributes' => array(
            'class' => array(
              'field-parent',
            ),
          ),
          '#parents' => array(
            'fields',
            $name,
            'parent',
          ),
        ),
        'hidden_name' => array(
          '#type' => 'hidden',
          '#default_value' => $name,
          '#attributes' => array(
            'class' => array(
              'field-name',
            ),
          ),
        ),
      ),
      'empty_cell' => array(
        '#markup' => '&nbsp;',
      ),
      'format' => array(
        'type' => array(
          '#type' => 'select',
          '#title' => t('Visibility for @title', array(
            '@title' => $extra_field['label'],
          )),
          '#title_display' => 'invisible',
          '#options' => $extra_visibility_options,
          '#default_value' => $display['visible'] ? 'content' : 'hidden',
          '#parents' => array(
            'fields',
            $name,
            'type',
          ),
          '#attributes' => array(
            'class' => array(
              'field-formatter-type',
            ),
          ),
        ),
      ),
      'settings_summary' => array(),
      'settings_edit' => array(),
    );
  }
  $form['fields'] = $table;

  // Custom display settings.
  if ($this->view_mode == 'default') {
    $entity_info = entity_get_info($this->entity_type);
    $view_modes = $entity_info['view_modes'];

    // Only show the settings if there is more than one view mode.
    if (count($view_modes) > 1) {
      $form['modes'] = array(
        '#type' => 'details',
        '#title' => t('Custom display settings'),
        '#collapsible' => TRUE,
        '#collapsed' => TRUE,
      );

      // Collect options and default values for the 'Custom display settings'
      // checkboxes.
      $options = array();
      $default = array();
      $view_mode_settings = field_view_mode_settings($this->entity_type, $this->bundle);
      foreach ($view_modes as $view_mode_name => $view_mode_info) {
        $options[$view_mode_name] = $view_mode_info['label'];
        if (!empty($view_mode_settings[$view_mode_name]['custom_settings'])) {
          $default[] = $view_mode_name;
        }
      }
      $form['modes']['view_modes_custom'] = array(
        '#type' => 'checkboxes',
        '#title' => t('Use custom display settings for the following view modes'),
        '#options' => $options,
        '#default_value' => $default,
      );
    }
  }

  // In overviews involving nested rows from contributed modules (i.e
  // field_group), the 'format type' selects can trigger a series of changes
  // in child rows. The #ajax behavior is therefore not attached directly to
  // the selects, but triggered by the client-side script through a hidden
  // #ajax 'Refresh' button. A hidden 'refresh_rows' input tracks the name of
  // affected rows.
  $form['refresh_rows'] = array(
    '#type' => 'hidden',
  );
  $form['refresh'] = array(
    '#type' => 'submit',
    '#value' => t('Refresh'),
    '#op' => 'refresh_table',
    '#submit' => array(
      array(
        $this,
        'multistepSubmit',
      ),
    ),
    '#ajax' => array(
      'callback' => array(
        $this,
        'multistepAjax',
      ),
      'wrapper' => 'field-display-overview-wrapper',
      'effect' => 'fade',
      // The button stays hidden, so we hide the Ajax spinner too. Ad-hoc
      // spinners will be added manually by the client-side script.
      'progress' => 'none',
    ),
    '#attributes' => array(
      'class' => array(
        'element-invisible',
      ),
    ),
  );
  $form['actions'] = array(
    '#type' => 'actions',
  );
  $form['actions']['submit'] = array(
    '#type' => 'submit',
    '#value' => t('Save'),
  );
  $form['#attached']['library'][] = array(
    'field_ui',
    'drupal.field_ui',
  );

  // Add tabledrag behavior.
  $form['#attached']['drupal_add_tabledrag'][] = array(
    'field-display-overview',
    'order',
    'sibling',
    'field-weight',
  );
  $form['#attached']['drupal_add_tabledrag'][] = array(
    'field-display-overview',
    'match',
    'parent',
    'field-parent',
    'field-parent',
    'field-name',
  );
  return $form;
}