Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
phpmyadmin /
libraries /
navigation /
nodes /
Delete
Unzip
Name
Size
Permission
Date
Action
Node.php
26.35
KB
-rw-r--r--
2017-01-23 20:20
NodeColumn.php
1.38
KB
-rw-r--r--
2017-01-23 20:20
NodeColumnContainer.php
1.85
KB
-rw-r--r--
2017-01-23 20:20
NodeDatabase.php
24.16
KB
-rw-r--r--
2017-01-23 20:20
NodeDatabaseChild.php
1.49
KB
-rw-r--r--
2017-01-23 20:20
NodeDatabaseChildContainer.php
1.15
KB
-rw-r--r--
2017-01-23 20:20
NodeDatabaseContainer.php
1.41
KB
-rw-r--r--
2017-01-23 20:20
NodeEvent.php
1.48
KB
-rw-r--r--
2017-01-23 20:20
NodeEventContainer.php
1.63
KB
-rw-r--r--
2017-01-23 20:20
NodeFunction.php
1.57
KB
-rw-r--r--
2017-01-23 20:20
NodeFunctionContainer.php
1.86
KB
-rw-r--r--
2017-01-23 20:20
NodeIndex.php
1.28
KB
-rw-r--r--
2017-01-23 20:20
NodeIndexContainer.php
1.85
KB
-rw-r--r--
2017-01-23 20:20
NodeProcedure.php
1.61
KB
-rw-r--r--
2017-01-23 20:20
NodeProcedureContainer.php
1.83
KB
-rw-r--r--
2017-01-23 20:20
NodeTable.php
10.85
KB
-rw-r--r--
2017-01-23 20:20
NodeTableContainer.php
1.75
KB
-rw-r--r--
2017-01-23 20:20
NodeTrigger.php
1.29
KB
-rw-r--r--
2017-01-23 20:20
NodeTriggerContainer.php
1.69
KB
-rw-r--r--
2017-01-23 20:20
NodeView.php
1.46
KB
-rw-r--r--
2017-01-23 20:20
NodeViewContainer.php
1.74
KB
-rw-r--r--
2017-01-23 20:20
Save
Rename
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Represents container node that carries children of a database * * @package PhpMyAdmin-Navigation */ namespace PMA\libraries\navigation\nodes; /** * Represents container node that carries children of a database * * @package PhpMyAdmin-Navigation */ abstract class NodeDatabaseChildContainer extends NodeDatabaseChild { /** * Initialises the class by setting the common variables * * @param string $name An identifier for the new node * @param int $type Type of node, may be one of CONTAINER or OBJECT */ public function __construct($name, $type = Node::OBJECT) { parent::__construct($name, $type); if ($GLOBALS['cfg']['NavigationTreeEnableGrouping']) { $this->separator = $GLOBALS['cfg']['NavigationTreeTableSeparator']; $this->separator_depth = (int)( $GLOBALS['cfg']['NavigationTreeTableLevel'] ); } } /** * Returns the type of the item represented by the node. * * @return string type of the item */ protected function getItemType() { return 'group'; } }