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 /
paroquia-rm.bak /
libraries /
src /
Feed /
Delete
Unzip
Name
Size
Permission
Date
Action
Parser
[ DIR ]
drwxr-xr-x
2017-09-19 09:00
Feed.php
8.85
KB
-rw-r--r--
2018-06-26 10:27
FeedEntry.php
7.06
KB
-rw-r--r--
2018-06-26 10:27
FeedFactory.php
4.11
KB
-rw-r--r--
2018-06-26 10:27
FeedLink.php
1.93
KB
-rw-r--r--
2018-06-26 10:27
FeedParser.php
6.46
KB
-rw-r--r--
2018-06-26 10:27
FeedPerson.php
1.17
KB
-rw-r--r--
2018-06-26 10:27
Save
Rename
<?php /** * Joomla! Content Management System * * @copyright Copyright (C) 2005 - 2018 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; } }