-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGalleryModuleBundle.php
More file actions
46 lines (38 loc) · 1.19 KB
/
GalleryModuleBundle.php
File metadata and controls
46 lines (38 loc) · 1.19 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
namespace SmartCore\Module\Gallery;
use SmartCore\Bundle\CMSBundle\Module\ModuleBundle;
class GalleryModuleBundle extends ModuleBundle
{
protected $adminMenuBeforeCode = '<i class="fa fa-object-ungroup"></i>';
/**
* Получить виджеты для рабочего стола.
*
* @return array
*/
public function getDashboard()
{
$em = $this->container->get('doctrine.orm.default_entity_manager');
$r = $this->container->get('router');
$data = [
'title' => 'Фотогалерея',
'items' => [],
];
foreach ($em->getRepository('GalleryModuleBundle:Gallery')->findAll() as $gallery) {
$data['items']['edit_slider_'.$gallery->getId()] = [
'title' => 'Редактировать галерею: <b>'.$gallery->getTitle().'</b>',
'descr' => '',
'url' => $r->generate('smart_module.gallery.admin_gallery', ['id' => $gallery->getId()]),
];
}
return $data;
}
/**
* @return array
*/
public function getRequiredParams()
{
return [
'gallery_id',
];
}
}