Fixing spelling mistake
[squirrelmail.git] / plugins / bug_report / setup.php
index a9eb570c7ab8ec542733267a629dd6b81fedac60..b80a97bb5784e31356e4ca3c4d35c40f368e2ace 100644 (file)
@@ -3,77 +3,75 @@
 /**
  * setup.php
  *
- * Copyright (c) 1999-2002 The SquirrelMail development team
+ * Copyright (c) 1999-2004 The SquirrelMail development team
  * Licensed under the GNU GPL. For full terms see the file COPYING.
  *
  * This is a standard Squirrelmail-1.2 API for plugins.
  *
  * $Id$
+ * @package plugins
+ * @subpackage bug_report
  */
 
 /* This button fills out a form with your setup information already
    gathered -- all you have to do is type. */
 
 
-/* Initialize the bug report plugin */
-function squirrelmail_plugin_init_bug_report()
-{
-  global $squirrelmail_plugin_hooks;
+/**
+ * Initialize the bug report plugin
+ * @return void
+ */
+function squirrelmail_plugin_init_bug_report() {
+    global $squirrelmail_plugin_hooks;
 
-  $squirrelmail_plugin_hooks['menuline']['bug_report'] = 'bug_report_button';
-  $squirrelmail_plugin_hooks['options_display_inside']['bug_report'] = 'bug_report_options';
-  $squirrelmail_plugin_hooks['options_display_save']['bug_report'] = 'bug_report_save';
-  $squirrelmail_plugin_hooks['loading_prefs']['bug_report'] = 'bug_report_load';
+    $squirrelmail_plugin_hooks['menuline']['bug_report'] = 'bug_report_button';
+    $squirrelmail_plugin_hooks['options_display_inside']['bug_report'] = 'bug_report_options';
+    $squirrelmail_plugin_hooks['options_display_save']['bug_report'] = 'bug_report_save';
+    $squirrelmail_plugin_hooks['loading_prefs']['bug_report'] = 'bug_report_load';
 }
 
 
 /* Show the button in the main bar */
-function bug_report_button() 
-{
-  global $color, $bug_report_visible;
-
-  if (! $bug_report_visible) 
-    return;
-    
-  displayInternalLink('plugins/bug_report/bug_report.php', 'Bug', '');
-  echo "  \n";
+function bug_report_button() {
+    global $color, $bug_report_visible;
+
+    if (! $bug_report_visible) {
+        return;
+    }
+
+    displayInternalLink('plugins/bug_report/bug_report.php', 'Bug', '');
+    echo "  \n";
 }
 
 
-function bug_report_save() 
-{
-  global $username,$data_dir;
-  global $bug_report_bug_report_visible;
+function bug_report_save() {
+    global $username,$data_dir;
 
-  if (isset($bug_report_bug_report_visible)) 
-  {
-    setPref($data_dir, $username, 'bug_report_visible', '1');
-  } 
-  else 
-  {
-    setPref($data_dir, $username, 'bug_report_visible', '');
-  }
+    if( sqgetGlobalVar('bug_report_bug_report_visible', $vis, SQ_POST) ) {
+        setPref($data_dir, $username, 'bug_report_visible', '1');
+    } else {
+        setPref($data_dir, $username, 'bug_report_visible', '');
+    }
 }
 
 
-function bug_report_load()
-{ 
-  global $username, $data_dir;
-  global $bug_report_visible;
+function bug_report_load() {
+    global $username, $data_dir;
+    global $bug_report_visible;
 
-  $bug_report_visible = getPref($data_dir, $username, 'bug_report_visible');
+    $bug_report_visible = getPref($data_dir, $username, 'bug_report_visible');
 }
 
 
-function bug_report_options()
-{
-  global $bug_report_visible;
-  
-  echo "<tr><td align=right nowrap>Bug Reports:</td>\n";
-  echo "<td><input name=\"bug_report_bug_report_visible\" type=CHECKBOX";
-  if ($bug_report_visible)
-    echo " CHECKED";
-  echo "> Show button in toolbar</td></tr>\n";
+function bug_report_options() {
+    global $bug_report_visible;
+
+    echo '<tr>' . html_tag('td',_("Bug Reports:"),'right','','nowrap') . "\n" .
+         '<td><input name="bug_report_bug_report_visible" type=CHECKBOX';
+    if ($bug_report_visible) {
+        echo ' CHECKED';
+    }
+    echo '> ' . _("Show button in toolbar") . "</td></tr>\n";
 }
 
 ?>