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

github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelipe Figueroa <amenadiel@gmail.com>2018-03-15 02:02:10 +0300
committerFelipe Figueroa <amenadiel@gmail.com>2018-03-15 02:02:10 +0300
commit49270fe791619ba2d0dbf666cfa66ca80457dd44 (patch)
tree916738a0243836b5cfba76c470b083bd4e344ed1 /src/controllers/BrowserController.php
parentc2a9af3868f88a47497b88b0dbd3ac4994e01670 (diff)
add package tag to controllers
Diffstat (limited to 'src/controllers/BrowserController.php')
-rw-r--r--src/controllers/BrowserController.php23
1 files changed, 12 insertions, 11 deletions
diff --git a/src/controllers/BrowserController.php b/src/controllers/BrowserController.php
index f48ea555..17a1e8ee 100644
--- a/src/controllers/BrowserController.php
+++ b/src/controllers/BrowserController.php
@@ -8,6 +8,7 @@ namespace PHPPgAdmin\Controller;
/**
* Base controller class.
+ *
* @package PHPPgAdmin
*/
class BrowserController extends BaseController
@@ -26,18 +27,18 @@ class BrowserController extends BaseController
$this->setNoBottomLink(true);
$viewVars = ['icon' => [
- 'blank' => $this->misc->icon('blank'),
- 'I' => $this->misc->icon('I'),
- 'L' => $this->misc->icon('L'),
- 'Lminus' => $this->misc->icon('Lminus'),
- 'Loading' => $this->misc->icon('Loading'),
- 'Lplus' => $this->misc->icon('Lplus'),
+ 'blank' => $this->misc->icon('blank'),
+ 'I' => $this->misc->icon('I'),
+ 'L' => $this->misc->icon('L'),
+ 'Lminus' => $this->misc->icon('Lminus'),
+ 'Loading' => $this->misc->icon('Loading'),
+ 'Lplus' => $this->misc->icon('Lplus'),
'ObjectNotFound' => $this->misc->icon('ObjectNotFound'),
- 'Refresh' => $this->misc->icon('Refresh'),
- 'Servers' => $this->misc->icon('Servers'),
- 'T' => $this->misc->icon('T'),
- 'Tminus' => $this->misc->icon('Tminus'),
- 'Tplus' => $this->misc->icon('Tplus'),
+ 'Refresh' => $this->misc->icon('Refresh'),
+ 'Servers' => $this->misc->icon('Servers'),
+ 'T' => $this->misc->icon('T'),
+ 'Tminus' => $this->misc->icon('Tminus'),
+ 'Tplus' => $this->misc->icon('Tplus'),
]];
echo $this->view->fetch('browser.twig', $viewVars);