diff options
| author | Starla Insigna <hatkirby@fourisland.com> | 2008-11-19 17:27:03 -0500 |
|---|---|---|
| committer | Starla Insigna <hatkirby@fourisland.com> | 2008-11-19 17:27:03 -0500 |
| commit | 24503e3abe705acde2df159aeae61be0d009f92e (patch) | |
| tree | 8debbd53dcd0db2f5934c5e2af4e697e3787781d /theme/css/headers.php | |
| download | fourisland-24503e3abe705acde2df159aeae61be0d009f92e.tar.gz fourisland-24503e3abe705acde2df159aeae61be0d009f92e.tar.bz2 fourisland-24503e3abe705acde2df159aeae61be0d009f92e.zip | |
Imported sources
Diffstat (limited to 'theme/css/headers.php')
| -rwxr-xr-x | theme/css/headers.php | 85 |
1 files changed, 85 insertions, 0 deletions
| diff --git a/theme/css/headers.php b/theme/css/headers.php new file mode 100755 index 0000000..bb5a179 --- /dev/null +++ b/theme/css/headers.php | |||
| @@ -0,0 +1,85 @@ | |||
| 1 | <?php | ||
| 2 | /* | ||
| 3 | 444444444 | ||
| 4 | 4::::::::4 | ||
| 5 | 4:::::::::4 | ||
| 6 | 4::::44::::4 | ||
| 7 | 4::::4 4::::4 Four Island | ||
| 8 | 4::::4 4::::4 | ||
| 9 | 4::::4 4::::4 Written and maintained by Starla Insigna | ||
| 10 | 4::::444444::::444 | ||
| 11 | 4::::::::::::::::4 theme/css/headers.php | ||
| 12 | 4444444444:::::444 | ||
| 13 | 4::::4 Please do not use, reproduce or steal the | ||
| 14 | 4::::4 contents of this file without explicit | ||
| 15 | 4::::4 permission from Hatkirby. | ||
| 16 | 44::::::44 | ||
| 17 | 4::::::::4 | ||
| 18 | 4444444444 | ||
| 19 | */ | ||
| 20 | |||
| 21 | if (!defined('S_INCLUDE_FILE')) {define('S_INCLUDE_FILE',1);} | ||
| 22 | |||
| 23 | require('headerproc.php'); | ||
| 24 | |||
| 25 | ?> | ||
| 26 | /* Four Island Header CSS */ | ||
| 27 | <?php | ||
| 28 | |||
| 29 | include_once('../includes/specialdates.php'); | ||
| 30 | |||
| 31 | if (sd_ifNoSpecialDay()) | ||
| 32 | { | ||
| 33 | $bgimgm = 'main'; | ||
| 34 | } elseif (sd_isSpecialDay('Four Island A')) | ||
| 35 | { | ||
| 36 | $bgimgm = 'islandYearly'; | ||
| 37 | } elseif (sd_isSpecialDay('Mothers Day')) | ||
| 38 | { | ||
| 39 | $bgimgm = 'mothers'; | ||
| 40 | } elseif (sd_isSpecialDay('Memorial Day')) | ||
| 41 | { | ||
| 42 | $bgimgm = 'memorial'; | ||
| 43 | } elseif (sd_isSpecialDay('Hatkirbys B-Day')) | ||
| 44 | { | ||
| 45 | $bgimgm = 'hatkirbybday'; | ||
| 46 | } else if (sd_isSpecialDay('CTNH')) | ||
| 47 | { | ||
| 48 | $bgimgm = 'ctnh'; | ||
| 49 | } else { | ||
| 50 | $bgimgm = 'main'; | ||
| 51 | } | ||
| 52 | |||
| 53 | if ($bgimgm == 'main') | ||
| 54 | { | ||
| 55 | //Check for page-based headers | ||
| 56 | ?> | ||
| 57 | /* Category-Based Headers */ | ||
| 58 | body.projects div#banner { | ||
| 59 | background-image: url("/theme/images/headers/projects.png"); | ||
| 60 | } | ||
| 61 | body.wiki div#banner { | ||
| 62 | background-image: url("/theme/images/headers/kfm.png"); | ||
| 63 | } | ||
| 64 | body.fourm div#banner { | ||
| 65 | background-image: url("/theme/images/headers/fourm.png"); | ||
| 66 | } | ||
| 67 | body.misc div#banner { | ||
| 68 | background-image: url("/theme/images/headers/random.png"); | ||
| 69 | } | ||
| 70 | body.webs div#banner { | ||
| 71 | background-image: url("/theme/images/headers/links.png"); | ||
| 72 | } | ||
| 73 | body.quotes div#banner { | ||
| 74 | background-image: url("/theme/images/headers/quotes.png"); | ||
| 75 | } | ||
| 76 | body.poll div#banner { | ||
| 77 | background-image: url("/theme/images/headers/potw.png"); | ||
| 78 | } | ||
| 79 | /* AID-Based Headers */ | ||
| 80 | <?php | ||
| 81 | } | ||
| 82 | ?> | ||
| 83 | div#banner { | ||
| 84 | background-image: url("/theme/images/headers/<?php echo($bgimgm); ?>.png"); /*850x129*/ | ||
| 85 | } | ||
