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: */ /** * Functionality for the navigation tree * * @package PhpMyAdmin-Navigation */ namespace PMA\libraries\navigation\nodes; use PMA; /** * Represents a node that is a child of a database node * This may either be a concrete child such as table or a container * such as table container * * @package PhpMyAdmin-Navigation */ abstract class NodeDatabaseChild extends Node { /** * Returns the type of the item represented by the node. * * @return string type of the item */ protected abstract function getItemType(); /** * Returns HTML for control buttons displayed infront of a node * * @return String HTML for control buttons */ public function getHtmlForControlButtons() { $ret = ''; $cfgRelation = PMA_getRelationsParam(); if ($cfgRelation['navwork']) { $db = $this->realParent()->real_name; $item = $this->real_name; $ret = '<span class="navItemControls">' . '<a href="navigation.php' . PMA_URL_getCommon() . '&hideNavItem=true' . '&itemType=' . urlencode($this->getItemType()) . '&itemName=' . urlencode($item) . '&dbName=' . urlencode($db) . '"' . ' class="hideNavItem ajax">' . PMA\libraries\Util::getImage('lightbulb_off.png', __('Hide')) . '</a></span>'; } return $ret; } }