Server IP : 180.180.241.3 / Your IP : 216.73.216.252 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/AppServ/www/app/webroot/phpMyAdmin/a/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 */ 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(); break; case 'userlink' : return $this->userlink; break; case 'controllink' : return $this->controllink; break; } 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_Databases */ public function getDatabaseList() { if (null === $this->databases) { $this->databases = new PMA_List_Database( $this->userlink, $this->controllink ); } return $this->databases; } } ?>