summaryrefslogtreecommitdiff
path: root/platform/www/lib/plugins/config/core/Setting/SettingDirchoice.php
blob: dfb27f5f44ab1c5b8e750454c5d61804d2994207 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php

namespace dokuwiki\plugin\config\core\Setting;

/**
 * Class setting_dirchoice
 */
class SettingDirchoice extends SettingMultichoice {

    protected $dir = '';

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

        // populate $this->_choices with a list of directories
        $list = array();

        if($dh = @opendir($this->dir)) {
            while(false !== ($entry = readdir($dh))) {
                if($entry == '.' || $entry == '..') continue;
                if($this->pattern && !preg_match($this->pattern, $entry)) continue;

                $file = (is_link($this->dir . $entry)) ? readlink($this->dir . $entry) : $this->dir . $entry;
                if(is_dir($file)) $list[] = $entry;
            }
            closedir($dh);
        }
        sort($list);
        $this->choices = $list;

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