phpmyadmin/libraries/classes/Controllers/Database/EventsController.php
Maurício Meneghini Fauth 1a14b3e4d3 Remove vim modelines
These settings are no longer required as they are guaranteed through
other coding standard tools.

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2019-09-02 09:43:21 -03:00

43 lines
816 B
PHP

<?php
/**
* Holds the PhpMyAdmin\Controllers\Database\EventsController
*
* @package PhpMyAdmin\Controllers\Database
*/
declare(strict_types=1);
namespace PhpMyAdmin\Controllers\Database;
use PhpMyAdmin\Rte\Events;
use PhpMyAdmin\Util;
/**
* Events management.
*
* @package PhpMyAdmin\Controllers\Database
*/
class EventsController extends AbstractController
{
/**
* @return void
*/
public function index(): void
{
global $errors, $titles;
/**
* Create labels for the list
*/
$titles = Util::buildActionTitles();
/**
* Keep a list of errors that occurred while
* processing an 'Add' or 'Edit' operation.
*/
$errors = [];
$events = new Events($this->dbi);
$events->main();
}
}