| Conditions | 4 |
| Paths | 2 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | private function getPagesPath() { |
||
| 29 | $config = $this->getServiceLocator()->get('Config'); |
||
| 30 | if(is_array($config) && |
||
| 31 | isset($config['template_assets_resolver']) && |
||
| 32 | isset($config['template_assets_resolver']['public_path'])) { |
||
| 33 | return $config['template_assets_resolver']['public_path'].'pages'.DIRECTORY_SEPARATOR; |
||
| 34 | } |
||
| 35 | return ''; |
||
| 36 | } |
||
| 37 | } |
||
| 38 |