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:
authorAmenadiel <amenadiel@gmail.com>2017-08-09 21:55:16 +0300
committerAmenadiel <amenadiel@gmail.com>2017-08-09 21:55:16 +0300
commitb1dbff4f9c4f5fbab1afc9274082c8325fe5943e (patch)
treea3cc18960ec58ac0c3895038cb9222580cf4f9d0 /src/controllers/InfoController.php
parent8c8a799cd071079585a342170648882dbeb42edb (diff)
creates footer controller
Diffstat (limited to 'src/controllers/InfoController.php')
-rw-r--r--src/controllers/InfoController.php32
1 files changed, 16 insertions, 16 deletions
diff --git a/src/controllers/InfoController.php b/src/controllers/InfoController.php
index 35bed78c..091cafaa 100644
--- a/src/controllers/InfoController.php
+++ b/src/controllers/InfoController.php
@@ -1,18 +1,18 @@
<?php
- namespace PHPPgAdmin\Controller;
+namespace PHPPgAdmin\Controller;
- use PHPPgAdmin\Decorators\Decorator;
+use PHPPgAdmin\Decorators\Decorator;
- /**
- * Base controller class
- */
- class InfoController extends BaseController
- {
+/**
+ * Base controller class
+ */
+class InfoController extends BaseController
+{
public $_name = 'InfoController';
- public function render()
- {
+ public function render()
+ {
$conf = $this->conf;
$misc = $this->misc;
$lang = $this->lang;
@@ -28,17 +28,17 @@
break;
}
- $misc->printFooter();
+ $this->printFooter();
}
/**
* List all the information on the table
- *
- * @param string $msg
- * @return string|void
+ *
+ * @param string $msg
+ * @return string|void
*/
- public function doDefault($msg = '')
- {
+ public function doDefault($msg = '')
+ {
$conf = $this->conf;
$misc = $this->misc;
$lang = $this->lang;
@@ -369,4 +369,4 @@
}
}
- }
+}