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 /
libraries /
src /
Feed /
Delete
Unzip
Name
Size
Permission
Date
Action
Parser
[ DIR ]
drwxr-xr-x
2017-10-04 08:52
Feed.php
8.51
KB
-rw-r--r--
2017-11-07 06:31
FeedEntry.php
6.77
KB
-rw-r--r--
2017-11-07 06:31
FeedFactory.php
4.11
KB
-rw-r--r--
2017-11-07 06:31
FeedLink.php
1.93
KB
-rw-r--r--
2017-11-07 06:31
FeedParser.php
6.46
KB
-rw-r--r--
2017-11-07 06:31
FeedPerson.php
1.17
KB
-rw-r--r--
2017-11-07 06:31
Save
Rename
<?php /** * Joomla! Content Management System * * @copyright Copyright (C) 2005 - 2017 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\CMS\Feed; defined('JPATH_PLATFORM') or die; /** * Feed Person class. * * @since 12.3 */ class FeedPerson { /** * The email address of the person. * * @var string * @since 12.3 */ public $email; /** * The full name of the person. * * @var string * @since 12.3 */ public $name; /** * The type of person. * * @var string * @since 12.3 */ public $type; /** * The URI for the person. * * @var string * @since 12.3 */ public $uri; /** * Constructor. * * @param string $name The full name of the person. * @param string $email The email address of the person. * @param string $uri The URI for the person. * @param string $type The type of person. * * @since 12.3 */ public function __construct($name = null, $email = null, $uri = null, $type = null) { $this->name = $name; $this->email = $email; $this->uri = $uri; $this->type = $type; } }