2020-03-19 20:53:46 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Drupal\my_module\Controller;
|
|
|
|
|
2020-03-19 21:00:51 +00:00
|
|
|
use Drupal\Core\StringTranslation\StringTranslationTrait;
|
|
|
|
|
2020-03-19 20:53:46 +00:00
|
|
|
class BlogPageController {
|
|
|
|
|
2020-03-19 21:00:51 +00:00
|
|
|
use StringTranslationTrait;
|
|
|
|
|
2020-03-19 20:53:46 +00:00
|
|
|
public function __invoke(): array {
|
2020-03-19 21:00:51 +00:00
|
|
|
return [
|
|
|
|
'#markup' => $this->t('Welcome to my blog!'),
|
|
|
|
];
|
2020-03-19 20:53:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|