blob: c2caf01f85f1e260b10d0540156ef9aa30ab328a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Holds the PhpMyAdmin\Controllers\Setup\FormController
*
* @package PhpMyAdmin\Controllers\Setup
*/
declare(strict_types=1);
namespace PhpMyAdmin\Controllers\Setup;
use PhpMyAdmin\Config\Forms\BaseForm;
use PhpMyAdmin\Config\Forms\Setup\SetupFormList;
use PhpMyAdmin\Core;
use PhpMyAdmin\Setup\FormProcessing;
/**
* Class FormController
* @package PhpMyAdmin\Controllers\Setup
*/
class FormController extends AbstractController
{
/**
* @param array $params Request parameters
* @return string HTML
*/
public function index(array $params): string
{
$pages = $this->getPages();
$formset = Core::isValid($params['formset'], 'scalar') ? $params['formset'] : null;
/** @var BaseForm $formClass */
$formClass = SetupFormList::get($formset);
if ($formClass === null) {
Core::fatalError(__('Incorrect form specified!'));
}
ob_start();
FormProcessing::process(new $formClass($this->config));
$page = ob_get_clean();
return $this->template->render('setup/form/index', [
'formset' => $params['formset'] ?? '',
'pages' => $pages,
'name' => $formClass::getName(),
'page' => $page,
]);
}
}
|