You are here

TestsController.php in Bamboo Twig 8.4

File

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

namespace Drupal\bamboo_twig_test\Controller;

use Drupal\Core\Controller\ControllerBase;
use DateTime;
use Drupal\Component\Datetime\DateTimePlus;
use Drupal\Core\Datetime\DrupalDateTime;

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

  /**
   * Loader page.
   */
  public function testLoader() {
    return [
      '#variables' => [
        'image_path' => drupal_get_path('module', 'bamboo_twig_test') . '/files/antistatique.jpg',
      ],
      '#theme' => 'bamboo_twig_test_loader',
    ];
  }

  /**
   * Render page.
   */
  public function testRender() {
    return [
      '#theme' => 'bamboo_twig_test_render',
    ];
  }

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

  /**
   * Config page for testing config Twig Extensions.
   */
  public function testConfig() {
    return [
      '#theme' => 'bamboo_twig_test_config',
    ];
  }

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

  /**
   * Path page.
   */
  public function testPath() {
    return [
      '#theme' => 'bamboo_twig_test_path',
    ];
  }

  /**
   * Internationalization page.
   */
  public function testI18n() {
    $nodeStorage = $this
      ->entityTypeManager()
      ->getStorage('node');
    return [
      '#variables' => [
        'articles' => [
          0 => $nodeStorage
            ->load(1),
          1 => $nodeStorage
            ->load(2),
          2 => $nodeStorage
            ->load(3),
          3 => $nodeStorage
            ->load(4),
          4 => $nodeStorage
            ->load(5),
        ],
        'datetime' => DateTime::createFromFormat('d-m-Y', '24-07-2014'),
        'datetimeplus' => DateTimePlus::createFromFormat('d-m-Y', '24-07-2014'),
        'drupaldatetime' => DrupalDateTime::createFromFormat('d-m-Y', '24-07-2014'),
      ],
      '#theme' => 'bamboo_twig_test_i18n',
    ];
  }

  /**
   * Twig Extensions page.
   */
  public function testExtensions() {
    return [
      '#theme' => 'bamboo_twig_test_extensions',
    ];
  }

  /**
   * Token page.
   */
  public function testToken() {
    return [
      '#theme' => 'bamboo_twig_test_token',
    ];
  }

}

Classes

Namesort descending Description
TestsController TestsController.