| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | public function nav(string $index, string $pathFile, string $module = null) |
||
| 12 | { |
||
| 13 | |||
| 14 | $this->setPage(file_get_contents(TEMPLATE_PATH . "/{$this->getThemePage()}/$pathFile.{$this->getExt()}")); |
||
|
|
|||
| 15 | $this->setIndex(file_get_contents(TEMPLATE_PATH . "/{$this->getThemeIndex()}/$index.{$this->getExt()}")); |
||
| 16 | $this->page(); |
||
| 17 | $this->route(); |
||
| 18 | $this->text($this->getThemeIndex(). '_'. str_replace("/","_", $pathFile), $module); |
||
| 19 | } |
||
| 20 | } |