| Conditions | 3 |
| Paths | 4 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | public function initialize($default = null, $local = null, $protected = null) { |
||
| 14 | |||
| 15 | // populate _choices with the compression methods supported by this php installation |
||
| 16 | if(function_exists('gzopen')) $this->choices[] = 'gz'; |
||
| 17 | if(function_exists('bzopen')) $this->choices[] = 'bz2'; |
||
| 18 | |||
| 19 | parent::initialize($default, $local, $protected); |
||
| 20 | } |
||
| 21 | } |
||
| 22 |