uawdijnntqw1x1x1
IP : 216.73.216.155
Hostname : vm5018.vps.agava.net
Kernel : Linux vm5018.vps.agava.net 3.10.0-1127.8.2.vz7.151.14 #1 SMP Tue Jun 9 12:58:54 MSK 2020 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
var
/
www
/
iplanru
/
data
/
.
/
mod-tmp
/
..
/
www
/
.
/
i-plan.ru
/
components
/
com_tags
/
views
/
tags
/
view.feed.php
/
/
<?php /** * @package Joomla.Site * @subpackage com_tags * * @copyright Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ defined('_JEXEC') or die; /** * HTML View class for the Tags component all tags view * * @package Joomla.Site * @subpackage com_tags * @since 3.1 */ class TagsViewTags extends JViewLegacy { public function display($tpl = null) { $app = JFactory::getApplication(); $document = JFactory::getDocument(); $document->link = JRoute::_('index.php?option=com_tags&view=tags'); $app->input->set('limit', $app->getCfg('feed_limit')); $siteEmail = $app->getCfg('mailfrom'); $fromName = $app->getCfg('fromname'); $feedEmail = $app->getCfg('feed_email', 'author'); $document->editor = $fromName; if ($feedEmail != "none") { $document->editorEmail = $siteEmail; } // Get some data from the model $items = $this->get('Items'); foreach ($items as $item) { // Strip HTML from feed item title $title = $this->escape($item->title); $title = html_entity_decode($title, ENT_COMPAT, 'UTF-8'); // Strip HTML from feed item description text $description = $item->description; $author = $item->created_by_alias ? $item->created_by_alias : $item->author; $date = ($item->displayDate ? date('r', strtotime($item->displayDate)) : ''); // Load individual item creator class $feeditem = new JFeedItem; $feeditem->title = $title; $feeditem->link = '/index.php?option=com_tags&view=tag&id=' . (int) $item->id; $feeditem->description = $description; $feeditem->date = $date; $feeditem->category = 'All Tags'; $feeditem->author = $author; if ($feedEmail == 'site') { $item->authorEmail = $siteEmail; } elseif ($feedEmail === 'author') { $item->authorEmail = $row->author_email; } // Loads item info into RSS array $document->addItem($feeditem); } } }
/var/www/iplanru/data/./mod-tmp/../www/./i-plan.ru/components/com_tags/views/tags/view.feed.php