blob: 02aca82e5fd0fcc3c2e99608f36660970a9afedf (
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\photo_gallery\Controller;
use Drupal\Core\Controller\ControllerBase;
/**
* Class PhotoGalleryController.
*/
class PhotoGalleryController extends ControllerBase {
/**
* Photo_gallery.
*
* @return string
* Return Hello string.
*/
public function photo_gallery() {
return [
'#type' => 'markup',
'#markup' => $this->t('Implement method: photo_gallery')
];
}
}
|