Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
lusedi /
components /
com_tags /
views /
tags /
Delete
Unzip
Name
Size
Permission
Date
Action
tmpl
[ DIR ]
drwxr-xr-x
2017-10-04 08:52
view.feed.php
2.19
KB
-rw-r--r--
2017-11-07 06:31
view.html.php
7.37
KB
-rw-r--r--
2017-11-07 06:31
Save
Rename
<?php /** * @package Joomla.Site * @subpackage com_tags * * @copyright Copyright (C) 2005 - 2017 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 * * @since 3.1 */ class TagsViewTags extends JViewLegacy { /** * Execute and display a template script. * * @param string $tpl The name of the template file to parse; automatically searches through the template paths. * * @return mixed A string if successful, otherwise an Error object. */ 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->get('feed_limit')); $siteEmail = $app->get('mailfrom'); $fromName = $app->get('fromname'); $feedEmail = $app->get('feed_email', 'none'); $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_user_name; $date = $item->created_time ? date('r', strtotime($item->created_time)) : ''; // 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') { $feeditem->authorEmail = $siteEmail; } if ($feedEmail === 'author') { $feeditem->authorEmail = $item->email; } // Loads item info into RSS array $document->addItem($feeditem); } } }