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-02-15 17:42:48 +0300
committerFelipe Figueroa <amenadiel@gmail.com>2018-02-15 17:42:48 +0300
commite455dee82358348b211eb2ac9a38f4c20b132818 (patch)
tree1c214b28f37e1666b423a6023f7762e65ffdccbb /src/controllers/ColpropertiesController.php
parent442876ec123baf1c1b1f35daf52ecd0f4db12bc7 (diff)
fixing coding issues
Diffstat (limited to 'src/controllers/ColpropertiesController.php')
-rw-r--r--src/controllers/ColpropertiesController.php30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/controllers/ColpropertiesController.php b/src/controllers/ColpropertiesController.php
index 99be8bc3..6b46296c 100644
--- a/src/controllers/ColpropertiesController.php
+++ b/src/controllers/ColpropertiesController.php
@@ -9,9 +9,9 @@ use \PHPPgAdmin\Decorators\Decorator;
*/
class ColpropertiesController extends BaseController
{
- public $_name = 'ColpropertiesController';
- public $tableName = '';
- public $table_place = 'colproperties-colproperties';
+ public $controller_name = 'ColpropertiesController';
+ public $tableName = '';
+ public $table_place = 'colproperties-colproperties';
public function render()
{
@@ -23,11 +23,11 @@ class ColpropertiesController extends BaseController
die($lang['strnotableprovided']);
}
- $conf = $this->conf;
- $misc = $this->misc;
+ $conf = $this->conf;
+
$lang = $this->lang;
$action = $this->action;
- $data = $misc->getDatabaseAccessor();
+ $data = $this->misc->getDatabaseAccessor();
$this->printHeader($lang['strtables'] . ' - ' . $this->tableName, null, true, 'header_select2.twig');
$this->printBody();
@@ -59,9 +59,9 @@ class ColpropertiesController extends BaseController
public function doDefault($msg = '', $isTable = true)
{
$conf = $this->conf;
- $misc = $this->misc;
+
$lang = $this->lang;
- $data = $misc->getDatabaseAccessor();
+ $data = $this->misc->getDatabaseAccessor();
$attPre = function (&$rowdata) use ($data) {
$rowdata->fields['+type'] = $data->formatType($rowdata->fields['type'], $rowdata->fields['atttypmod']);
@@ -84,7 +84,7 @@ class ColpropertiesController extends BaseController
// Show comment if any
if ($attrs->fields['comment'] !== null) {
- echo '<p class="comment">', $misc->printVal($attrs->fields['comment']), "</p>\n";
+ echo '<p class="comment">', $this->misc->printVal($attrs->fields['comment']), "</p>\n";
}
$column = [
@@ -216,9 +216,9 @@ class ColpropertiesController extends BaseController
public function doAlter($msg = '')
{
$conf = $this->conf;
- $misc = $this->misc;
+
$lang = $this->lang;
- $data = $misc->getDatabaseAccessor();
+ $data = $this->misc->getDatabaseAccessor();
if (!isset($_REQUEST['stage'])) {
$_REQUEST['stage'] = 1;
@@ -295,7 +295,7 @@ class ColpropertiesController extends BaseController
$typname = $types->fields['typname'];
$types_for_js[] = $typname;
echo "\t<option value=\"", htmlspecialchars($typname), '"', ($typname == $_REQUEST['type']) ? ' selected="selected"' : '', '>',
- $misc->printVal($typname), "</option>\n";
+ $this->misc->printVal($typname), "</option>\n";
$types->moveNext();
}
echo "</select>\n";
@@ -315,7 +315,7 @@ class ColpropertiesController extends BaseController
htmlspecialchars($_REQUEST['length']), "\" /></td>\n";
} else {
// Otherwise draw the read-only type name
- echo '<td>', $misc->printVal($data->formatType($column->fields['type'], $column->fields['atttypmod'])), "</td>\n";
+ echo '<td>', $this->misc->printVal($data->formatType($column->fields['type'], $column->fields['atttypmod'])), "</td>\n";
}
echo '<td><input type="checkbox" name="notnull"', (isset($_REQUEST['notnull'])) ? ' checked="checked"' : '', " /></td>\n";
@@ -326,7 +326,7 @@ class ColpropertiesController extends BaseController
echo "</table>\n";
echo "<p><input type=\"hidden\" name=\"action\" value=\"properties\" />\n";
echo "<input type=\"hidden\" name=\"stage\" value=\"2\" />\n";
- echo $misc->form;
+ echo $this->misc->form;
echo '<input type="hidden" name="table" value="', htmlspecialchars($_REQUEST['table']), "\" />\n";
echo '<input type="hidden" name="column" value="', htmlspecialchars($_REQUEST['column']), "\" />\n";
echo '<input type="hidden" name="olddefault" value="', htmlspecialchars($_REQUEST['olddefault']), "\" />\n";
@@ -367,7 +367,7 @@ class ColpropertiesController extends BaseController
if ($status == 0) {
if ($_REQUEST['column'] != $_REQUEST['field']) {
$_REQUEST['column'] = $_REQUEST['field'];
- $misc->setReloadBrowser(true);
+ $this->misc->setReloadBrowser(true);
}
$this->doDefault($sql . "<br/>{$lang['strcolumnaltered']}");
} else {