Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
0.00% |
0 / 11 |
|
0.00% |
0 / 1 |
CRAP | |
0.00% |
0 / 1 |
Config | |
0.00% |
0 / 11 |
|
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
__construct | |
0.00% |
0 / 11 |
|
0.00% |
0 / 1 |
2 |
1 | <?php |
2 | namespace Lggr; |
3 | |
4 | /** |
5 | * @brief Default configuration class for web UI. |
6 | */ |
7 | class Config extends AbstractConfig { |
8 | |
9 | function __construct() { |
10 | $this->setDbUser('lggrweb'); |
11 | $this->setDbPwd('xxx'); |
12 | $this->setDbName('lggr'); |
13 | $this->setDbHost('mysql'); |
14 | |
15 | |
16 | // Set your preferred language en_US, de_DE, or pt_BR |
17 | $this->setLocale('en_US'); |
18 | |
19 | /* remote storage */ |
20 | $this->setUrlBootstrap('/vendor/twbs/bootstrap/dist/'); |
21 | $this->setUrlJquery('/node_modules/jquery/dist/'); |
22 | $this->setUrlJqueryui('/node_modules/jquery-ui-dist/'); |
23 | $this->setUrlJAtimepicker('/node_modules/jquery-ui-timepicker-addon/dist/'); |
24 | $this->setUrlChartjs('/node_modules/chart.js/dist/'); |
25 | $this->setUrlJQCloud('/node_modules/jqcloud-npm/dist/'); |
26 | } |
27 | } |