__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?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;
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Designer | Folder | 0755 |
|
|
| CentralColumns.php | File | 35.74 KB | 0644 |
|
| DatabaseList.php | File | 886 B | 0644 |
|
| Designer.php | File | 15.19 KB | 0644 |
|
| Events.php | File | 20.61 KB | 0644 |
|
| MultiTableQuery.php | File | 3.37 KB | 0644 |
|
| Qbe.php | File | 58.34 KB | 0644 |
|
| Routines.php | File | 57.15 KB | 0644 |
|
| Search.php | File | 9.35 KB | 0644 |
|
| Triggers.php | File | 17.95 KB | 0644 |
|