elFinder\elFinder::volume PHP 메소드

volume() 보호된 메소드

Return root - file's owner
저자: Dmitry (dio) Levashov
protected volume ( $hash ) : elFinderStorageDriver
리턴 elFinderStorageDriver
    protected function volume($hash)
    {
        foreach ($this->volumes as $id => $v) {
            if (strpos('' . $hash, $id) === 0) {
                return $this->volumes[$id];
            }
        }
        return false;
    }