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();
파일 보기
프로젝트 열기: contao/core-bundle
보호된 프로퍼티들
공개 메소드들
메소드 상세
Set the data from an array
Return an object property
Check whether a property is set
프로퍼티 상세
protected array $arrData |
리턴 |
array |
|