| <?php |
| |
| // Remove magic numbers |
| // Newsgroups posts |
| define("POSTS_7_RED", 1); |
| define("POSTS_7_GREEN", 10); |
| define("POSTS_30_RED", 10); |
| define("POSTS_30_GREEN",40); |
| |
| // Time to answer // Unix timestamp format |
| define("ANSWERS_RED", 172800); // Two days = 2 * 24 * 60 * 60 |
| define("ANSWERS_GREEN", 86400); // One day = 24 * 60 * 60 |
| |
| // HTML Color codes |
| define("WHITE","#FFFFFF"); |
| define("RED", "#FFCFCF"); |
| define("GREEN","#CFFFCF"); |
| |
| // HTML code for lights |
| define("LIGHT_PATH", "/projects/dashboard/lights/"); |
| |
| define("WHITE_LIGHT","<img border=0 src=\"". LIGHT_PATH. "white.gif\" />"); |
| define("RED_LIGHT", "<img border=0 src=\"". LIGHT_PATH. "red.gif\" />"); |
| define("GREEN_LIGHT","<img border=0 src=\"". LIGHT_PATH. "green.gif\" />"); |
| |
| ?> |