From 7fe908c50c8dbc5cc05f571dbe11d66141caacd4 Mon Sep 17 00:00:00 2001 From: Marius Cramer <m.cramer@pixcept.de> Date: Thu, 14 Nov 2013 09:01:22 -0500 Subject: [PATCH] Cleaning up code to match coding guidelines --- interface/web/admin/form/tpl_default.tform.php | 70 +++++++++++++++++----------------- 1 files changed, 35 insertions(+), 35 deletions(-) diff --git a/interface/web/admin/form/tpl_default.tform.php b/interface/web/admin/form/tpl_default.tform.php index de63948..df52bbe 100644 --- a/interface/web/admin/form/tpl_default.tform.php +++ b/interface/web/admin/form/tpl_default.tform.php @@ -59,16 +59,16 @@ */ -$form["title"] = "tpl_default_head_txt"; -$form["description"] = "tpl_default_desc_txt"; -$form["name"] = "tpl_default"; -$form["action"] = "tpl_default.php"; -$form["db_table"] = "sys_theme"; -$form["db_table_idx"] = "id"; -$form["db_history"] = "yes"; -$form["tab_default"] = "basic"; -$form["list_default"] = "system_config_edit.php"; -$form["auth"] = 'yes'; +$form["title"] = "tpl_default_head_txt"; +$form["description"] = "tpl_default_desc_txt"; +$form["name"] = "tpl_default"; +$form["action"] = "tpl_default.php"; +$form["db_table"] = "sys_theme"; +$form["db_table_idx"] = "id"; +$form["db_history"] = "yes"; +$form["tab_default"] = "basic"; +$form["list_default"] = "system_config_edit.php"; +$form["auth"] = 'yes'; $form["auth_preset"]["userid"] = 0; // 0 = id of the user, > 0 id must match with id of current user $form["auth_preset"]["groupid"] = 0; // 0 = default groupid of the user, > 0 id must match with groupid of current user @@ -77,37 +77,37 @@ $form["auth_preset"]["perm_other"] = ''; //r = read, i = insert, u = update, d = delete $form["tabs"]['basic'] = array ( - 'title' => "Basic Settings", - 'width' => 80, - 'template' => "templates/tpl_default_basic.htm", - 'fields' => array ( - ################################## - # Beginn Datenbankfelder - ################################## + 'title' => "Basic Settings", + 'width' => 80, + 'template' => "templates/tpl_default_basic.htm", + 'fields' => array ( + //################################# + // Beginn Datenbankfelder + //################################# 'username' => array ( - 'datatype' => 'VARCHAR', - 'formtype' => 'TEXT', + 'datatype' => 'VARCHAR', + 'formtype' => 'TEXT', 'validators' => '', - 'default' => 'global', - 'value' => 'global', - 'separator' => '', - 'width' => '40', - 'maxlength' => '64' + 'default' => 'global', + 'value' => 'global', + 'separator' => '', + 'width' => '40', + 'maxlength' => '64' ), 'logo_url' => array ( - 'datatype' => 'VARCHAR', - 'formtype' => 'TEXT', + 'datatype' => 'VARCHAR', + 'formtype' => 'TEXT', 'validators' => '', - 'default' => '', - 'value' => '', - 'separator' => '', - 'width' => '40', - 'maxlength' => '255' + 'default' => '', + 'value' => '', + 'separator' => '', + 'width' => '40', + 'maxlength' => '255' ), - ################################## - # ENDE Datenbankfelder - ################################## + //################################# + // ENDE Datenbankfelder + //################################# ) ); -?> \ No newline at end of file +?> -- Gitblit v1.9.1