Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 18.117.151.127
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
ifk /
web /
prado4.3.2 /
Xml /
[ HOME SHELL ]
Name
Size
Permission
Action
TXmlDocument.php
6.34
KB
-rw-r--r--
TXmlElement.php
5.57
KB
-rw-r--r--
TXmlElementList.php
2.05
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : TXmlElementList.php
<?php /** * TXmlElement, TXmlDocument, TXmlElementList class file * * @author Qiang Xue <qiang.xue@gmail.com> * @link https://github.com/pradosoft/prado * @license https://github.com/pradosoft/prado/blob/master/LICENSE */ namespace Prado\Xml; use Prado\Exceptions\TInvalidDataTypeException; /** * TXmlElementList class. * * TXmlElementList represents a collection of {@link TXmlElement}. * You may manipulate the collection with the operations defined in {@link TList}. * * @author Qiang Xue <qiang.xue@gmail.com> * @since 3.0 */ class TXmlElementList extends \Prado\Collections\TList { /** * @var TXmlElement owner of this list */ private $_o; /** * Constructor. * @param TXmlElement $owner owner of this list */ public function __construct(TXmlElement $owner) { $this->_o = $owner; parent::__construct(); } /** * @return TXmlElement owner of this list */ protected function getOwner() { return $this->_o; } /** * Inserts an item at the specified position. * This overrides the parent implementation by performing additional * operations for each newly added TXmlElement object. * @param int $index the specified position. * @param mixed $item new item * @throws TInvalidDataTypeException if the item to be inserted is not a TXmlElement object. */ public function insertAt($index, $item) { if ($item instanceof TXmlElement) { parent::insertAt($index, $item); if ($item->getParent() !== null) { $item->getParent()->getElements()->remove($item); } $item->setParent($this->_o); } else { throw new TInvalidDataTypeException('xmlelementlist_xmlelement_required'); } } /** * Removes an item at the specified position. * This overrides the parent implementation by performing additional * cleanup work when removing a TXmlElement object. * @param int $index the index of the item to be removed. * @return mixed the removed item. */ public function removeAt($index) { $item = parent::removeAt($index); if ($item instanceof TXmlElement) { $item->setParent(null); } return $item; } }
Close