BcThemeConfigReader::__construct PHP Method

__construct() public method

コンストラクタ
public __construct ( string $path = null )
$path string テーマディレクトリのパス. デフォルトは WWW_ROOT . 'theme' . DS
    public function __construct($path = null)
    {
        if (!$path) {
            $path = WWW_ROOT . 'theme' . DS;
        }
        if (substr($path, -1) !== DS) {
            $path .= DS;
        }
        $this->_path = $path;
    }