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
Показать файл Открыть проект

Защищенные свойства (Protected)

Свойство Тип Описание
$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