public function ViewPreviewForm::form in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/views_ui/src/ViewPreviewForm.php \Drupal\views_ui\ViewPreviewForm::form()
Gets the actual form array to be built.
Overrides EntityForm::form
See also
\Drupal\Core\Entity\EntityForm::processForm()
\Drupal\Core\Entity\EntityForm::afterBuild()
File
- core/
modules/ views_ui/ src/ ViewPreviewForm.php, line 21 - Contains \Drupal\views_ui\ViewPreviewForm.
Class
- ViewPreviewForm
- Form controller for the Views preview form.
Namespace
Drupal\views_uiCode
public function form(array $form, FormStateInterface $form_state) {
$view = $this->entity;
$form['#prefix'] = '<div id="views-preview-wrapper" class="views-preview-wrapper views-admin clearfix">';
$form['#suffix'] = '</div>';
$form['#id'] = 'views-ui-preview-form';
$form_state
->disableCache();
$form['controls']['#attributes'] = array(
'class' => array(
'clearfix',
),
);
$form['controls']['title'] = array(
'#prefix' => '<h2 class="view-preview-form__title">',
'#markup' => $this
->t('Preview'),
'#suffix' => '</h2>',
);
// Add a checkbox controlling whether or not this display auto-previews.
$form['controls']['live_preview'] = array(
'#type' => 'checkbox',
'#id' => 'edit-displays-live-preview',
'#title' => $this
->t('Auto preview'),
'#default_value' => \Drupal::config('views.settings')
->get('ui.always_live_preview'),
);
// Add the arguments textfield
$form['controls']['view_args'] = array(
'#type' => 'textfield',
'#title' => $this
->t('Preview with contextual filters:'),
'#description' => $this
->t('Separate contextual filter values with a "/". For example, %example.', array(
'%example' => '40/12/10',
)),
'#id' => 'preview-args',
);
$args = array();
if (!$form_state
->isValueEmpty('view_args')) {
$args = explode('/', $form_state
->getValue('view_args'));
}
$user_input = $form_state
->getUserInput();
if ($form_state
->get('show_preview') || !empty($user_input['js'])) {
$form['preview'] = array(
'#weight' => 110,
'#theme_wrappers' => array(
'container',
),
'#attributes' => array(
'id' => 'views-live-preview',
'class' => 'views-live-preview',
),
'preview' => $view
->renderPreview($this->displayID, $args),
);
}
$uri = $view
->urlInfo('preview-form');
$uri
->setRouteParameter('display_id', $this->displayID);
$form['#action'] = $uri
->toString();
return $form;
}