You are here

ViewsTestDataElementForm.php in Zircon Profile 8.0

File

core/modules/views/tests/modules/views_test_data/src/Form/ViewsTestDataElementForm.php
View source
<?php

/**
 * @file
 * Contains \Drupal\views_test_data\Form\ViewsTestDataElementForm.
 */
namespace Drupal\views_test_data\Form;

use Drupal\Core\Form\FormBase;
use Drupal\Core\Form\FormStateInterface;

/**
 * Simple form page callback to test the view element.
 */
class ViewsTestDataElementForm extends FormBase {

  /**
   * {@inheritdoc}
   */
  public function getFormId() {
    return 'views_test_data_element_form';
  }

  /**
   * {@inheritdoc}
   */
  public function buildForm(array $form, FormStateInterface $form_state) {
    $form['view'] = array(
      '#type' => 'view',
      '#name' => 'test_view_embed',
      '#display_id' => 'default',
      '#arguments' => array(
        25,
      ),
      '#embed' => FALSE,
    );
    return $form;
  }

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

}

Classes

Namesort descending Description
ViewsTestDataElementForm Simple form page callback to test the view element.