Exemplo n.º 1
0
 protected function _getRssEntryByItem(Kwf_Component_Data $item)
 {
     $ret = parent::_getRssEntryByItem($item);
     $ret['description'] = $item->teaser;
     $ret['lastUpdate'] = strtotime($item->publish_date);
     return $ret;
 }
Exemplo n.º 2
0
 protected function _getRssEntryByItem(Kwf_Component_Data $item)
 {
     $ret = parent::_getRssEntryByItem($item);
     $renderer = new Kwf_Component_Renderer_HtmlExport();
     $ret['description'] = $renderer->renderComponent($item->getChildComponent('-content'));
     $ret['lastUpdate'] = strtotime($item->publish_date);
     $ret['title'] = $item->row->title;
     return $ret;
 }