More rg=0
[squirrelmail.git] / themes / random.php
CommitLineData
fc632e34 1<?php
fc632e34 2
d4f79d96 3/**
4 * random.php
5 * Name: Random Theme Every Login
6 * Author: Tyler Akins
7 * Date: December 24, 2001
8 * Comment: Guess what this does!
9 *
10 * Copyright (c) 2000-2002 The SquirrelMail Project Team
11 * Licensed under the GNU GPL. For full terms see the file COPYING.
12 *
13 * $Id$
14 */
fc632e34 15
d4f79d96 16sq_mt_randomize();
0b97a708 17
18require_once(SM_PATH . 'functions/global.php');
fc632e34 19
d4f79d96 20global $theme, $random_theme_good_themes;
fc632e34 21
d4f79d96 22if (!session_is_registered('random_theme_good_theme')) {
23 $good_themes = array();
24 foreach ($theme as $data) {
25 if (substr($data['PATH'], -18) != '/themes/random.php') {
fc632e34 26 $good_themes[] = $data['PATH'];
d4f79d96 27 }
28 }
29 if (count($good_themes) == 0)
30 $good_themes[] = '../themes/default.php';
31 $which = mt_rand(0, count($good_themes));
32 $random_theme_good_theme = $good_themes[$which];
0b97a708 33 sqsession_register($random_theme_good_theme, 'random_theme_good_theme');
d4f79d96 34}
fc632e34 35
d4f79d96 36@include_once ($random_theme_good_theme);
fc632e34 37
38?>