summaryrefslogtreecommitdiff
path: root/platform/www/lib/plugins/config/core/Setting/SettingCompression.php
blob: f97d8280186caf3c1fd6e77a982f2b91ea9a32d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php

namespace dokuwiki\plugin\config\core\Setting;

/**
 * Class setting_compression
 */
class SettingCompression extends SettingMultichoice {

    protected $choices = array('0');      // 0 = no compression, always supported

    /** @inheritdoc */
    public function initialize($default = null, $local = null, $protected = null) {

        // populate _choices with the compression methods supported by this php installation
        if(function_exists('gzopen')) $this->choices[] = 'gz';
        if(function_exists('bzopen')) $this->choices[] = 'bz2';

        parent::initialize($default, $local, $protected);
    }
}