1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
<?php namespace Drupal\department\Controller; use Drupal\Core\Controller\ControllerBase; /** * Class DepartmentController. */ class DepartmentController extends ControllerBase { /** * Department. * * @return string * Return Hello string. */ public function department() { return [ '#type' => 'markup', '#markup' => $this->t('Implement method: department') ]; } }