Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AddNewPrimaryController.php « Normalization « Controllers « classes « libraries - github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bbbdd9976c01004c855f2e5643762eee7172cc54 (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
<?php

declare(strict_types=1);

namespace PhpMyAdmin\Controllers\Normalization;

use PhpMyAdmin\Controllers\AbstractController;
use PhpMyAdmin\Http\ServerRequest;
use PhpMyAdmin\Normalization;
use PhpMyAdmin\ResponseRenderer;
use PhpMyAdmin\Template;
use PhpMyAdmin\Url;

final class AddNewPrimaryController extends AbstractController
{
    /** @var Normalization */
    private $normalization;

    public function __construct(ResponseRenderer $response, Template $template, Normalization $normalization)
    {
        parent::__construct($response, $template);
        $this->normalization = $normalization;
    }

    public function __invoke(ServerRequest $request): void
    {
        $num_fields = 1;
        $columnMeta = [
            'Field' => $GLOBALS['table'] . '_id',
            'Extra' => 'auto_increment',
        ];
        $html = $this->normalization->getHtmlForCreateNewColumn(
            $num_fields,
            $GLOBALS['db'],
            $GLOBALS['table'],
            $columnMeta
        );
        $html .= Url::getHiddenInputs($GLOBALS['db'], $GLOBALS['table']);
        $this->response->addHTML($html);
    }
}