| Server IP : 213.186.33.2 / Your IP : 216.73.216.39 Web Server : Apache System : Linux webm005.cluster102.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64 User : symetry ( 21728) PHP Version : 8.2.31 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/symetry/www/ARCHIVES/beta/pma/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
);
}
return $this->databases;
}
}
?>