uawdijnntqw1x1x1
IP : 216.73.216.155
Hostname : vm5018.vps.agava.net
Kernel : Linux vm5018.vps.agava.net 3.10.0-1127.8.2.vz7.151.14 #1 SMP Tue Jun 9 12:58:54 MSK 2020 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
var
/
..
/
usr
/
share
/
javascript
/
..
/
squirrelmail
/
themes
/
greenhouse_effect.php
/
/
<?php /** * Name: Greenhouse Effect * Date: October 20, 2001 * Comment: This theme generates random colors, featuring a * light greenish background. * * @author Joey Bump * @copyright 2000-2010 The SquirrelMail Project Team * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @version $Id: greenhouse_effect.php 13893 2010-01-25 02:47:41Z pdontthink $ * @package squirrelmail * @subpackage themes */ /** seed the random number generator **/ sq_mt_randomize(); for ($i = 0; $i <= 16; $i++) { /* background/foreground toggle **/ if ($i == 0 || $i == 3 || $i == 4 || $i == 5 || $i == 9 || $i == 10 || $i == 12 || $i == 16) { /* background */ $g = mt_rand(248,255); $r = mt_rand(110,248); $b = mt_rand(109,$r); } else { /* text */ $cmin = 0; $cmax = 96; /** generate random color **/ $b = mt_rand($cmin,$cmax); $g = mt_rand($cmin,$cmax); $r = mt_rand($cmin,$cmax); } /** set array element as hex string with hashmark (for HTML output) **/ $color[$i] = sprintf('#%02X%02X%02X',$r,$g,$b); }
/var/../usr/share/javascript/../squirrelmail/themes/greenhouse_effect.php