| Conditions | 3 |
| Paths | 3 |
| Total Lines | 15 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 3 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 14 | public function execute() |
||
| 15 | { |
||
| 16 | if ($this->input->getOption('noDownload')) { |
||
| 17 | return; |
||
| 18 | } |
||
| 19 | |||
| 20 | $installationFolder = $this->config->getString('installationFolder'); |
||
| 21 | chdir($installationFolder); |
||
| 22 | |||
| 23 | $flag = $this->getOptionalBooleanOption('installSampleData', 'Install sample data?'); |
||
| 24 | |||
| 25 | if ($flag) { |
||
| 26 | $this->runSampleDataInstaller(); |
||
| 27 | } |
||
| 28 | } |
||
| 29 | |||
| 59 |