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.0
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 /
controllers /
Delete
Unzip
Name
Size
Permission
Date
Action
database
[ DIR ]
drwxrwxrwx
2022-03-20 10:35
server
[ DIR ]
drwxrwxrwx
2022-03-20 10:35
table
[ DIR ]
drwxrwxrwx
2022-03-20 10:35
Controller.php
899
B
-rw-r--r--
2017-01-23 20:20
DatabaseController.php
494
B
-rw-r--r--
2017-01-23 20:20
TableController.php
605
B
-rw-r--r--
2017-01-23 20:20
Save
Rename
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * Holds the PMA\TableController * * @package PMA */ namespace PMA\libraries\controllers; use PMA\libraries\DatabaseInterface; use PMA\libraries\di\Container; use PMA\libraries\Response; require_once 'libraries/database_interface.inc.php'; /** * Base class for all of controller * * @package PhpMyAdmin */ abstract class Controller { /** * @var Response */ protected $response; /** * @var DatabaseInterface */ protected $dbi; /** * @var \PMA\libraries\di\Container */ protected $container; /** * Constructor */ public function __construct() { $container = Container::getDefaultContainer(); $this->container = $container; $this->dbi = $this->container->get('dbi'); $this->response = $this->container->get('response'); } }