Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2. /**
  3.  * @file
  4. * Contains \Drupal\demo\Controller\DemoController.
  5. */
  6.  
  7. namespace Drupal\demo\Controller;
  8.  
  9. /**
  10. * DemoController.
  11. */
  12. class DemoController {
  13.   /**
  14.   * Generates an example page.
  15.   */
  16.   public function demo() {
  17.     return array(
  18.       '#markup' => t('Hello World!'),
  19.        );
  20.     }
  21. }