28 lines
517 B
PHP
28 lines
517 B
PHP
<?php
|
|
|
|
/**
|
|
* vpanel-stack
|
|
* https://git.stack-source.com/msb/vpanel-stack
|
|
* Copyright (c) 2022 Matthew Saunders Brown <matthewsaundersbrown@gmail.com>
|
|
* GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
*/
|
|
|
|
namespace Panel\MySQL;
|
|
|
|
class Databases extends \Panel\MySQL {
|
|
|
|
/* use this to make query */
|
|
function beforeRoute($f3) {
|
|
|
|
parent::beforeRoute($f3);
|
|
|
|
}
|
|
|
|
static function get($f3) {
|
|
|
|
echo \Template::instance()->render('mysql/databases.html');
|
|
|
|
}
|
|
|
|
}
|