You are here

TestsController.php in Bamboo Twig 8

File

tests/bamboo_twig_test/src/Controller/TestsController.php
View source
<?php

namespace Drupal\bamboo_twig_test\Controller;

use Drupal\Core\Controller\ControllerBase;

/**
 * TestsController.
 */
class TestsController extends ControllerBase {

  /**
   * Loaders page.
   */
  public function loaders() {
    return [
      '#theme' => 'bamboo_twig_test_loaders',
    ];
  }

  /**
   * Security page.
   */
  public function security() {
    return [
      '#theme' => 'bamboo_twig_test_security',
    ];
  }

  /**
   * Config page.
   */
  public function configs() {
    return [
      '#theme' => 'bamboo_twig_test_configs',
    ];
  }

  /**
   * File page.
   */
  public function files() {
    return [
      '#theme' => 'bamboo_twig_test_files',
    ];
  }

}

Classes

Namesort descending Description
TestsController TestsController.