PHP 클래스 Contao\BackendModule

Parent class for back end modules that are not using the default engine.
상속: extends Backend
파일 보기 프로젝트 열기: contao/core-bundle

보호된 프로퍼티들

프로퍼티 타입 설명
$arrData array Current record
$objDc object Data container object
$strTemplate string Template

공개 메소드들

메소드 설명
__construct ( DataContainer $dc = null ) Initialize the object
__get ( string $strKey ) : mixed Return an object property
__set ( string $strKey, mixed $varValue ) Set an object property
generate ( ) : string Parse the template

보호된 메소드들

메소드 설명
compile ( ) Compile the current element

메소드 상세

__construct() 공개 메소드

Initialize the object
public __construct ( DataContainer $dc = null )
$dc DataContainer

__get() 공개 메소드

Return an object property
public __get ( string $strKey ) : mixed
$strKey string
리턴 mixed

__set() 공개 메소드

Set an object property
public __set ( string $strKey, mixed $varValue )
$strKey string
$varValue mixed

compile() 추상적인 보호된 메소드

Compile the current element
abstract protected compile ( )

generate() 공개 메소드

Parse the template
public generate ( ) : string
리턴 string

프로퍼티 상세

$arrData 보호되어 있는 프로퍼티

Current record
protected array $arrData
리턴 array

$objDc 보호되어 있는 프로퍼티

Data container object
protected object $objDc
리턴 object

$strTemplate 보호되어 있는 프로퍼티

Template
protected string $strTemplate
리턴 string