Mercurial > hg > isophonics-drupal-site
view core/modules/views/tests/modules/views_test_data/src/Controller/ViewsTestFormMultipleController.php @ 9:1fc0ff908d1f
Add another data file
author | Chris Cannam |
---|---|
date | Mon, 05 Feb 2018 12:34:32 +0000 |
parents | 4c8ae668cc8c |
children |
line wrap: on
line source
<?php namespace Drupal\views_test_data\Controller; use Drupal\Core\Controller\ControllerBase; /** * Controller routines for views form multiple test routes. */ 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; } }