class ViewsTestFormMultipleController

Same name and namespace in other branches
  1. 11.x core/modules/views/tests/modules/views_test_data/src/Controller/ViewsTestFormMultipleController.php \Drupal\views_test_data\Controller\ViewsTestFormMultipleController

Controller routines for views form multiple test routes.

Hierarchy

Expanded class hierarchy of ViewsTestFormMultipleController

File

core/modules/views/tests/modules/views_test_data/src/Controller/ViewsTestFormMultipleController.php, line 10

Namespace

Drupal\views_test_data\Controller
View source
class ViewsTestFormMultipleController extends ControllerBase {
  
  /**
   * Returns a test page having test_form_multiple view embedded twice.
   */
  public function testPage() {
    $build = [
      'view_arg1' => [
        '#prefix' => '<div class="view-test-form-multiple-1">',
        '#suffix' => '</div>',
        '#type' => 'view',
        '#name' => 'test_form_multiple',
        '#display_id' => 'default',
        '#arguments' => [
          'arg1',
        ],
        '#embed' => TRUE,
      ],
      'view_arg2' => [
        '#prefix' => '<div class="view-test-form-multiple-2">',
        '#suffix' => '</div>',
        '#type' => 'view',
        '#name' => 'test_form_multiple',
        '#display_id' => 'default',
        '#arguments' => [
          'arg2',
        ],
        '#embed' => TRUE,
      ],
    ];
    return $build;
  }

}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.