/**
  * Constructs ServerPluginsController
  */
 public function __construct()
 {
     parent::__construct();
     $this->_setServerPlugins();
 }
 /**
  * Constructs ServerVariablesController
  */
 public function __construct()
 {
     parent::__construct();
     $this->variable_doc_links = $this->_getDocumentLinks();
 }
 /**
  * Constructs ServerBinlogController
  */
 public function __construct()
 {
     parent::__construct();
     $this->binary_logs = $this->dbi->fetchResult('SHOW MASTER LOGS', 'Log_name', null, null, DatabaseInterface::QUERY_STORE);
 }