Update website
This commit is contained in:
parent
a0b0d3dae7
commit
ae7ef6ad45
3151 changed files with 566766 additions and 48 deletions
|
@ -0,0 +1,33 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace PhpMyAdmin\Controllers\Table;
|
||||
|
||||
use PhpMyAdmin\Controllers\SqlController;
|
||||
use PhpMyAdmin\RecentFavoriteTable;
|
||||
|
||||
/**
|
||||
* Browse recent and favorite tables chosen from navigation.
|
||||
*/
|
||||
class RecentFavoriteController extends AbstractController
|
||||
{
|
||||
public function index(): void
|
||||
{
|
||||
global $containerBuilder;
|
||||
|
||||
RecentFavoriteTable::getInstance('recent')->removeIfInvalid(
|
||||
$_REQUEST['db'],
|
||||
$_REQUEST['table']
|
||||
);
|
||||
|
||||
RecentFavoriteTable::getInstance('favorite')->removeIfInvalid(
|
||||
$_REQUEST['db'],
|
||||
$_REQUEST['table']
|
||||
);
|
||||
|
||||
/** @var SqlController $controller */
|
||||
$controller = $containerBuilder->get(SqlController::class);
|
||||
$controller->index();
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue