- added new utils_css file to contain CSS-related functions for use in templates
[squirrelmail.git] / themes / monostochastic.php
index e8582759b6320f213fbe22cd6bc45229244f0c26..82d58b54286760ff777aa7acac2ccd6219bcf5fa 100755 (executable)
@@ -2,24 +2,34 @@
 
 /**
  * monostochastic.php
- *    Name:    Monostochastic
- *    Author:  Jorey Bump
- *    Date:    October 20, 2001
- *    Comment: Generates random two-color frames, featuring either
- *             a dark or light background.
+ * Name:    Monostochastic
+ * Date:    October 20, 2001
+ * Comment: Generates random two-color frames, featuring either
+ *          a dark or light background.
  *
- * Copyright (c) 2000-2002 The SquirrelMail Project Team
- * Licensed under the GNU GPL. For full terms see the file COPYING.
- *
- * $Id$
+ * @author Jorey Bump
+ * @copyright © 2000-2006 The SquirrelMail Project Team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
+ * @version $Id$
+ * @package squirrelmail
+ * @subpackage themes
  */
 
-/* seed the random number generator */
+/** Prevent direct script loading */
+if ((isset($_SERVER['SCRIPT_FILENAME']) && $_SERVER['SCRIPT_FILENAME'] == __FILE__) ||
+    (isset($HTTP_SERVER_SERVER['SCRIPT_FILENAME']) && $HTTP_SERVER_SERVER['SCRIPT_FILENAME'] == __FILE__) ) {
+    die();
+}
+
+/** load sq_mt_randomize() */
+include_once(SM_PATH . 'functions/strings.php');
+
+/** seed the random number generator */
 sq_mt_randomize();
 
 /** light(1) or dark(0) background toggle **/
 $bg = mt_rand(0,1);
+
 /** range delimiter **/
 $bgrd = $bg * 128;
 
@@ -44,9 +54,9 @@ $bt = mt_rand($cmin_t,$cmax_t);
 /** set array element as hex string with hashmark (for HTML output) **/
 for ($i = 0; $i <= 15; $i++) {
     if ($i == 0 or $i == 3 or $i == 4 or $i == 5 or $i == 9 or $i == 10 or $i == 12) {
-        $color[$i] = sprintf("#%02X%02X%02X",$rb,$gb,$bb);
+        $color[$i] = sprintf('#%02X%02X%02X',$rb,$gb,$bb);
     } else {
-        $color[$i] = sprintf("#%02X%02X%02X",$rt,$gt,$bt);
+        $color[$i] = sprintf('#%02X%02X%02X',$rt,$gt,$bt);
     }
 }
 
@@ -72,4 +82,4 @@ $color[14]  = '#xxxxxx';  // Color for quoted text -- >> 2 or more
 
 */
 
-?>
+?>
\ No newline at end of file