PHP 클래스 Contao\FeedItem

The class provides an interface to create RSS or Atom feed items. You can then add the items to a Feed object. Usage: $feed = new Feed('news'); $feed->title = 'News feed'; $item = new FeedItem(); $item->title = 'Latest news'; $item->author = 'Leo Feyer'; $feed->addItem($item); echo $feed->generateRss();
상속: extends System
파일 보기 프로젝트 열기: contao/core-bundle

보호된 프로퍼티들

프로퍼티 타입 설명
$arrData array Data

공개 메소드들

메소드 설명
__construct ( array $arrData = null ) Set the data from an array
__get ( string $strKey ) : mixed | null Return an object property
__isset ( string $strKey ) : boolean Check whether a property is set
__set ( string $strKey, mixed $varValue ) Set an object property
addEnclosure ( string $strFile, string $strUrl = null ) Add an enclosure

메소드 상세

__construct() 공개 메소드

Set the data from an array
public __construct ( array $arrData = null )
$arrData array An optional data array

__get() 공개 메소드

Return an object property
public __get ( string $strKey ) : mixed | null
$strKey string The property name
리턴 mixed | null The property value

__isset() 공개 메소드

Check whether a property is set
public __isset ( string $strKey ) : boolean
$strKey string The property name
리턴 boolean True if the property is set

__set() 공개 메소드

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

addEnclosure() 공개 메소드

Add an enclosure
public addEnclosure ( string $strFile, string $strUrl = null )
$strFile string The file path
$strUrl string The base URL

프로퍼티 상세

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

Data
protected array $arrData
리턴 array