123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- /**
- * random.php
- * Name: Random Theme Every Login
- * Author: Tyler Akins
- * Date: December 24, 2001
- * Comment: Guess what this does!
- *
- * Copyright (c) 2000-2002 The SquirrelMail Project Team
- * Licensed under the GNU GPL. For full terms see the file COPYING.
- *
- * $Id$
- */
- sq_mt_randomize();
-
- global $theme, $random_theme_good_themes;
-
- if (!session_is_registered('random_theme_good_theme')) {
- $good_themes = array();
- foreach ($theme as $data) {
- if (substr($data['PATH'], -18) != '/themes/random.php') {
- $good_themes[] = $data['PATH'];
- }
- }
- if (count($good_themes) == 0)
- $good_themes[] = '../themes/default.php';
- $which = mt_rand(0, count($good_themes));
- $random_theme_good_theme = $good_themes[$which];
- session_register('random_theme_good_theme');
- }
-
- @include_once ($random_theme_good_theme);
- ?>
|