| Conditions | 1 |
| Paths | 1 |
| Total Lines | 18 |
| Code Lines | 12 |
| Lines | 18 |
| Ratio | 100 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 2 |
| 1 | <?php |
||
| 49 | View Code Duplication | protected function assignVariables() |
|
| 50 | { |
||
| 51 | $this->templateVariables = array( |
||
| 52 | 'area' => array( |
||
| 53 | 'showBreadcrumbs' => false, |
||
| 54 | 'title' => $this->get('translator')->trans('acp.dashboard', array(), 'TwoMartensCoreBundle') |
||
| 55 | ), |
||
| 56 | 'siteTitle' => $this->get('translator')->trans( |
||
| 57 | 'acp.siteTitle', |
||
| 58 | array('globalTitle' => 'CoreBundle Test'), |
||
| 59 | 'TwoMartensCoreBundle' |
||
| 60 | ), |
||
| 61 | 'navigation' => array( |
||
| 62 | 'active' => 'home' |
||
| 63 | ), |
||
| 64 | ); |
||
| 65 | parent::assignVariables(); |
||
| 66 | } |
||
| 67 | } |
||
| 68 |