Add PHP index file
[squirrelmail.git] / plugins / fortune / setup.php
index 4d99eb2aa9bd0e92b26d030572a130f05ac56e58..1a521e71d0abfcc35f611def46ad12137bf4cca3 100644 (file)
@@ -1,74 +1,50 @@
 <?php
 
 /**
- * plugins/fortune/setup.php
+ * Fortune plugin setup script
  *
- * Copyright (c) 1999-2002 The SquirrelMail Project Team
- * Licensed under the GNU GPL. For full terms see the file COPYING.
- *
- * Original code contributed by paulm@spider.org
- *
- * Simple SquirrelMail WebMail Plugin that displays the output of
- * fortune above the message listing.
- *
- * $Id$
+ * @copyright &copy; 1999-2007 The SquirrelMail Project Team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
+ * @version $Id$
+ * @package plugins
+ * @subpackage fortune
  */
 
+/**
+ * Init plugin
+ * @access private
+ */
 function squirrelmail_plugin_init_fortune() {
-  global $squirrelmail_plugin_hooks;
-  
-  $squirrelmail_plugin_hooks['mailbox_index_before']['fortune'] = 'fortune';
-  $squirrelmail_plugin_hooks['options_display_inside']['fortune'] = 'fortune_options';
-  $squirrelmail_plugin_hooks['options_display_save']['fortune'] = 'fortune_save';
-  $squirrelmail_plugin_hooks['loading_prefs']['fortune'] = 'fortune_load';  
-}
+    global $squirrelmail_plugin_hooks;
 
-function fortune() {
-    global $fortune_visible, $color;
-
-    if (!$fortune_visible) {
-        return;
-    }
-
-    $fortune_location = '/usr/games/fortune';
-    $exist = file_exists('$fortune_location');
-    echo "<center><table cellpadding=0 cellspacing=0 border=0 bgcolor=$color[10]><tr><td><table width=100% cellpadding=2 cellspacing=1 border=0 bgcolor=\"$color[5]\"><tr><td align=center>";
-    echo '<TABLE><TR><TD>';
-    if (!$exist) {
-        echo "$fortune_location not found.";
-    } else {
-        echo '<CENTER><FONT=3><EM>Today's Fortune</EM><BR></FONT></CENTER><pre>';
-        system($fortune_location);
-    } 
-  
-    echo '</pre></TD></TR></TABLE></td></tr></table></td></tr></table></center>';
+    $squirrelmail_plugin_hooks['template_construct_message_list.tpl']['fortune'] = 'fortune';
+    $squirrelmail_plugin_hooks['loading_prefs']['fortune'] = 'fortune_load';
+    $squirrelmail_plugin_hooks['optpage_loadhook_display']['fortune'] = 'fortune_options';
 }
 
-function fortune_load() {
-    global $username, $data_dir, $fortune_visible;
-
-    $fortune_visible = getPref($data_dir, $username, 'fortune_visible');
+/**
+ * Call fortune display function
+ * @access private
+ */
+function fortune() {
+    include_once(SM_PATH . 'plugins/fortune/functions.php');
+    return fortune_function();
 }
 
+/**
+ * Call fortune option display function
+ * @access private
+ */
 function fortune_options() {
-  global $fortune_visible;
-
-  echo '<tr><td align=right nowrap>Fortunes:</td>\n';
-  echo '<td><input name="fortune_fortune_visible" type=CHECKBOX';
-  if ($fortune_visible)
-    echo ' CHECKED';
-  echo "> Show fortunes at top of mailbox</td></tr>\n";
+    include_once(SM_PATH . 'plugins/fortune/functions.php');
+    fortune_function_options();
 }
 
-function fortune_save() {
-    global $username,$data_dir;
-    global $fortune_fortune_visible;
-
-    if (isset($fortune_fortune_visible)) {
-        setPref($data_dir, $username, 'fortune_visible', '1');
-    } else {
-        setPref($data_dir, $username, 'fortune_visible', '');
-    }
+/**
+ * Call fortune prefs load function
+ * @access private
+ */
+function fortune_load() {
+    include_once(SM_PATH . 'plugins/fortune/functions.php');
+    fortune_function_load();
 }
-
-?>