blob: f6e37a20bf7038490b0404bc0bb6c1674def68f3 (
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
51
52
53
54
55
|
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Holds the PhpMyAdmin\Controllers\Setup\ConfigController
*
* @package PhpMyAdmin\Controllers\Setup
*/
declare(strict_types=1);
namespace PhpMyAdmin\Controllers\Setup;
use PhpMyAdmin\Config\FormDisplayTemplate;
use PhpMyAdmin\Core;
use PhpMyAdmin\Setup\ConfigGenerator;
/**
* Class ConfigController
* @package PhpMyAdmin\Controllers\Setup
*/
class ConfigController extends AbstractController
{
/**
* @param array $params Request parameters
* @return string HTML
*/
public function index(array $params): string
{
$pages = $this->getPages();
$formDisplayTemplate = new FormDisplayTemplate($GLOBALS['PMA_Config']);
$formTop = $formDisplayTemplate->displayFormTop('config.php');
$fieldsetTop = $formDisplayTemplate->displayFieldsetTop(
'config.inc.php',
'',
null,
['class' => 'simple']
);
$formBottom = $formDisplayTemplate->displayFieldsetBottom(false);
$fieldsetBottom = $formDisplayTemplate->displayFormBottom();
$config = ConfigGenerator::getConfigFile($this->config);
return $this->template->render('setup/config/index', [
'formset' => $params['formset'] ?? '',
'pages' => $pages,
'form_top_html' => $formTop,
'fieldset_top_html' => $fieldsetTop,
'form_bottom_html' => $formBottom,
'fieldset_bottom_html' => $fieldsetBottom,
'eol' => Core::ifSetOr($params['eol'], 'unix'),
'config' => $config,
]);
}
}
|