Initial commit
This commit is contained in:
49
#pma/libraries/controllers/Controller.php
Normal file
49
#pma/libraries/controllers/Controller.php
Normal file
@ -0,0 +1,49 @@
|
||||
<?php
|
||||
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
||||
/**
|
||||
* Holds the PMA\TableController
|
||||
*
|
||||
* @package PMA
|
||||
*/
|
||||
namespace PMA\libraries\controllers;
|
||||
|
||||
use PMA\libraries\DatabaseInterface;
|
||||
use PMA\libraries\di\Container;
|
||||
use PMA\libraries\Response;
|
||||
|
||||
require_once 'libraries/database_interface.inc.php';
|
||||
|
||||
/**
|
||||
* Base class for all of controller
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
*/
|
||||
abstract class Controller
|
||||
{
|
||||
|
||||
/**
|
||||
* @var Response
|
||||
*/
|
||||
protected $response;
|
||||
|
||||
/**
|
||||
* @var DatabaseInterface
|
||||
*/
|
||||
protected $dbi;
|
||||
|
||||
/**
|
||||
* @var \PMA\libraries\di\Container
|
||||
*/
|
||||
protected $container;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
$container = Container::getDefaultContainer();
|
||||
$this->container = $container;
|
||||
$this->dbi = $this->container->get('dbi');
|
||||
$this->response = $this->container->get('response');
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user