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_Database */ public function getDatabaseList() { if (null === $this->databases) { $this->databases = new PMA_List_Database( $this->userlink ); } return $this->databases; } } ?>