Submit
Path:
~
/
/
opt
/
psa
/
phpMyAdmin
/
libraries
/
classes
/
Controllers
/
Export
/
File Content:
TablesController.php
<?php declare(strict_types=1); namespace PhpMyAdmin\Controllers\Export; use PhpMyAdmin\Controllers\AbstractController; use PhpMyAdmin\Controllers\Database\ExportController; use PhpMyAdmin\ResponseRenderer; use PhpMyAdmin\Template; use function __; final class TablesController extends AbstractController { /** @var ExportController */ private $exportController; public function __construct(ResponseRenderer $response, Template $template, ExportController $exportController) { parent::__construct($response, $template); $this->exportController = $exportController; } public function __invoke(): void { if (empty($_POST['selected_tbl'])) { $this->response->setRequestStatus(false); $this->response->addJSON('message', __('No table selected.')); return; } ($this->exportController)(); } }
Submit
FILE
FOLDER
INFO
Name
Size
Permission
Action
Template
---
0755
CheckTimeOutController.php
529 bytes
0644
ExportController.php
24487 bytes
0644
TablesController.php
903 bytes
0644
N4ST4R_ID | Naxtarrr