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; /** * Handles table related logic * * @package PhpMyAdmin */ abstract class TableController extends Controller { /** * @var string $db */ protected $db; /** * @var string $table */ protected $table; /** * Constructor */ public function __construct() { parent::__construct(); $this->db = $this->container->get('db'); $this->table = $this->container->get('table'); } }