blob: c6b76791828f529777dd0f105c02f25beecca549 (
plain)
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\sae_teams\Controller;
use Drupal\Core\Controller\ControllerBase;
/**
* Class sae_teamsController.
*/
class sae_teamsController extends ControllerBase {
/**
* Hello.
*
* @return string
* Return Hello string.
*/
public function hello($name) {
return [
'#type' => 'markup',
'#markup' => $this->t('Implement method: hello with parameter(s): $name'),
];
}
}
|