1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- /**
- * Name: Random Theme Every Login
- * @author Tyler Akins
- * Date: December 24, 2001
- * Comment: Guess what this does!
- *
- * Copyright (c) 2000-2004 The SquirrelMail Project Team
- * Licensed under the GNU GPL. For full terms see the file COPYING.
- *
- * $Id$
- * @package squirrelmail
- * @subpackage themes
- */
- /** Initialize the random number generator */
- sq_mt_randomize();
- require_once(SM_PATH . 'functions/global.php');
-
- global $theme;
-
- if (!sqsession_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];
- sqsession_register($random_theme_good_theme, 'random_theme_good_theme');
- } else {
- // get random theme stored in session
- sqgetGlobalVar('random_theme_good_theme',$random_theme_good_theme);
- }
-
- @include_once ($random_theme_good_theme);
- ?>
|