| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | public function __construct() |
||
| 16 | { |
||
| 17 | parent::__construct(); |
||
| 18 | |||
| 19 | $this->set('documentation', function () { |
||
| 20 | $fc = new \Anax\Content\CFileContent(); |
||
| 21 | $fc->setBasePath(ANAX_INSTALL_PATH . 'docs/documentation'); |
||
| 22 | return $fc; |
||
| 23 | }); |
||
| 24 | |||
| 25 | $this->theme->setVariable('style', "article {max-width: 650px;}"); |
||
| 26 | $this->theme->setBaseTitle(" - Anax documentation"); |
||
| 27 | } |
||
| 28 | } |
||
| 29 |