%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/phpmyadmin/libraries/ |
Upload File : |
<?php /* vim: set expandtab sw=4 ts=4 sts=4: */ /** * phpMyAdmin main Controller * * @package PhpMyAdmin * */ if (! defined('PHPMYADMIN')) { exit; } /** * Database listing. */ require_once './libraries/List_Database.class.php'; /** * phpMyAdmin main Controller * * @package PhpMyAdmin * * @property resource $userlink * @property resource $controllink */ class PMA { /** * Holds database list * * @var PMA_List_Database */ protected $databases = null; /** * DBMS user link * * @var resource */ protected $userlink = null; /** * DBMS control link * * @var resource */ protected $controllink = null; /** * magic access to protected/inaccessible members/properties * * @param string $param parameter name * * @return mixed * @see http://php.net/language.oop5.overloading */ public function __get($param) { switch ($param) { case 'databases' : return $this->getDatabaseList(); case 'userlink' : return $this->userlink; case 'controllink' : return $this->controllink; } return null; } /** * magic access to protected/inaccessible members/properties * * @param string $param parameter name * @param mixed $value value to set * * @return void * @see http://php.net/language.oop5.overloading */ public function __set($param, $value) { switch ($param) { case 'userlink' : $this->userlink = $value; break; case 'controllink' : $this->controllink = $value; break; } } /** * Accessor to PMA::$databases * * @return PMA_List_Database */ public function getDatabaseList() { if (null === $this->databases) { $this->databases = new PMA_List_Database( $this->userlink ); } return $this->databases; } }