Conditions | 1 |
Paths | 1 |
Total Lines | 35 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
17 | public function getMenuControllers() |
||
18 | { |
||
19 | return array( |
||
20 | 'BMeta' => array( |
||
21 | 'label' => 'Мета теги', |
||
22 | 'menu' => array('BMetaRoute', 'BMetaMask'), |
||
23 | 'itemOptions' => array('class' => 'seopanel') |
||
24 | ), |
||
25 | 'BCounters' => array( |
||
26 | 'label' => 'Счетчики', |
||
27 | 'menu' => array('BCounters'), |
||
28 | 'itemOptions' => array('class' => 'counters') |
||
29 | ), |
||
30 | 'BLinkBlock' => array( |
||
31 | 'label' => 'Ссылочный блок', |
||
32 | 'menu' => array('BLinkBlock'), |
||
33 | 'itemOptions' => array('class' => 'linksblock') |
||
34 | ), |
||
35 | 'BLink' => array( |
||
36 | 'label' => 'Каталог ссылок', |
||
37 | 'menu' => array('BLink', 'BLinkSection'), |
||
38 | 'itemOptions' => array('class' => 'links') |
||
39 | ), |
||
40 | 'BRedirects' => array( |
||
41 | 'label' => 'Редиректы', |
||
42 | 'menu' => array('BRedirect'), |
||
43 | 'itemOptions' => array('class' => 'redirect') |
||
44 | ), |
||
45 | 'BSitemap' => array( |
||
46 | 'label' => 'SitemapXML', |
||
47 | 'menu' => array('BSitemap', 'BSitemapExclusion'), |
||
48 | 'itemOptions' => array('class' => 'sitemap') |
||
49 | ), |
||
50 | ); |
||
51 | } |
||
52 | } |
||
53 |