elFinderConnector::__construct PHP 메소드

__construct() 공개 메소드

Constructor
저자: Dmitry (dio) Levashov
public __construct ( $elFinder, boolean $debug = false )
$elFinder
$debug boolean
    public function __construct($elFinder, $debug = false)
    {
        $this->elFinder = $elFinder;
        $this->reqMethod = strtoupper($_SERVER["REQUEST_METHOD"]);
        if ($debug) {
            self::$contentType = 'Content-Type: text/html; charset=utf-8';
        }
    }