17 lines
309 B
PHP
17 lines
309 B
PHP
<?php
|
|
|
|
namespace Drupal\example\Controller;
|
|
|
|
use Drupal\Core\StringTranslation\StringTranslationTrait;
|
|
|
|
final class ExamplePageController {
|
|
|
|
use StringTranslationTrait;
|
|
|
|
public function __invoke(): array {
|
|
return [
|
|
'#markup' => $this->t('This page is powered by Drupal and Nix.'),
|
|
];
|
|
}
|
|
|
|
}
|