You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
725 B
27 lines
725 B
<?php |
|
|
|
declare(strict_types=1); |
|
|
|
namespace PhpMyAdmin\Controllers\Table; |
|
|
|
use PhpMyAdmin\Controllers\Sql\SqlController; |
|
use PhpMyAdmin\RecentFavoriteTable; |
|
|
|
/** |
|
* Browse recent and favorite tables chosen from navigation. |
|
*/ |
|
class RecentFavoriteController extends AbstractController |
|
{ |
|
public function __invoke(): 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(); |
|
} |
|
}
|
|
|