Back to CategoryView class

Method addFeed

protected void
addFeed
()
Method to add an alternative feed link to a category layout.
Returns
  • void
Since
  • 3.2
Class: CategoryView
Project: Joomla

Method addFeed - Source code

/**
 * Method to add an alternative feed link to a category layout.
 *
 * @return  void
 *
 * @since   3.2
 */
protected function addFeed()
{
    if ($this->params->get('show_feed_link', 1) == 1) {
        $link = '&format=feed&limitstart=';
        $attribs = array('type' => 'application/rss+xml', 'title' => 'RSS 2.0');
        $this->document->addHeadLink(Route::_($link . '&type=rss'), 'alternate', 'rel', $attribs);
        $attribs = array('type' => 'application/atom+xml', 'title' => 'Atom 1.0');
        $this->document->addHeadLink(Route::_($link . '&type=atom'), 'alternate', 'rel', $attribs);
    }
}