PHP Class Xpressengine\Plugin\MetaFileReader

json 형태의 플러그인의 메타파일을 읽어들인 다음, 디코딩한 다음 반환한다.
Author: XE Developers ([email protected])
Show file Open project: xpressengine/xpressengine Class Usage Examples

Protected Properties

Property Type Description
$fileName file의 기본 파일명

Public Methods

Method Description
__construct ( string $fileName ) MetaFileReader constructor.
read ( string $path, string $fileName = null ) : mixed 주어진 path에 위치한 fileName을 가진 파일의 데이터를 읽어들여 object 형태로 반환한다.

Protected Methods

Method Description
getFileContents ( string $path ) : string getFileContents

Method Details

__construct() public method

MetaFileReader constructor.
public __construct ( string $fileName )
$fileName string 기본파일명

getFileContents() protected method

getFileContents
protected getFileContents ( string $path ) : string
$path string file path
return string

read() public method

주어진 path에 위치한 fileName을 가진 파일의 데이터를 읽어들여 object 형태로 반환한다.
public read ( string $path, string $fileName = null ) : mixed
$path string 디렉토리 경로
$fileName string 파일명, 파일명이 null일 경우 기본 파일명을 사용한다.
return mixed

Property Details

$fileName protected property

file의 기본 파일명
protected $fileName