| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 3.3332 |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 16 | 63 | public function sync($type = 'xml') |
|
| 17 | { |
||
| 18 | // Download quran data |
||
| 19 | 63 | foreach ($this->config->get('translations') as $tr) { |
|
| 20 | 63 | $file = $this->config->get('storage_path') . '/' . $tr . '.' . $type; |
|
| 21 | |||
| 22 | 63 | if (!file_exists($file)) { |
|
| 23 | $url = 'http://tanzil.net/trans/?transID=' . $tr . '&type=' . $type; |
||
| 24 | $this->download($url, $file); |
||
| 25 | } |
||
| 26 | 63 | } |
|
| 27 | 63 | } |
|
| 28 | |||
| 36 |