diff options
Diffstat (limited to 'includes')
-rwxr-xr-x | includes/common.php | 8 | ||||
-rwxr-xr-x | includes/functions.php | 12 | ||||
-rwxr-xr-x | includes/layout.php | 19 | ||||
-rwxr-xr-x | includes/parsers.php | 1 | ||||
-rwxr-xr-x | includes/specialdates.php | 99 |
5 files changed, 87 insertions, 52 deletions
diff --git a/includes/common.php b/includes/common.php index 1239c68..8ca6958 100755 --- a/includes/common.php +++ b/includes/common.php | |||
@@ -47,6 +47,14 @@ if (isset($_GET['layout'])) | |||
47 | exit; | 47 | exit; |
48 | } | 48 | } |
49 | 49 | ||
50 | if (sd_isSpecialDay('April Fools Day') && ($_COOKIE['layout'] != '7')) | ||
51 | { | ||
52 | setcookie('layout', 7, time()+60*60*24*30, '/', '.fourisland.com'); | ||
53 | |||
54 | header('Location: ' . getRewriteURL()); | ||
55 | exit; | ||
56 | } | ||
57 | |||
50 | if (preg_match('|MSIE ([0-9].[0-9]{1,2})|', $_SERVER['HTTP_USER_AGENT'], $matched)) | 58 | if (preg_match('|MSIE ([0-9].[0-9]{1,2})|', $_SERVER['HTTP_USER_AGENT'], $matched)) |
51 | { | 59 | { |
52 | $usingIE = true; | 60 | $usingIE = true; |
diff --git a/includes/functions.php b/includes/functions.php index efb3c13..f0dad53 100755 --- a/includes/functions.php +++ b/includes/functions.php | |||
@@ -281,7 +281,7 @@ function displayRelated($title, $avoid = 0) | |||
281 | $template = new FITemplate('related'); | 281 | $template = new FITemplate('related'); |
282 | } | 282 | } |
283 | 283 | ||
284 | $template->adds_block('POST', array( 'TITLE' => htmlentities($getrelated3[$i]['title']), | 284 | $template->adds_block('POST', array( 'TITLE' => doAprilFoolsDay(htmlentities($getrelated3[$i]['title'])), |
285 | 'CODED' => $getrelated3[$i]['slug'], | 285 | 'CODED' => $getrelated3[$i]['slug'], |
286 | 'AUTHOR' => $getrelated3[$i]['author'], | 286 | 'AUTHOR' => $getrelated3[$i]['author'], |
287 | 'DATE' => date('F jS Y',strtotime($getrelated3[$i]['pubDate'])))); | 287 | 'DATE' => date('F jS Y',strtotime($getrelated3[$i]['pubDate'])))); |
@@ -331,11 +331,11 @@ function getPollOfTheWeek($id = -1) | |||
331 | $getpoll2 = mysql_query($getpoll); | 331 | $getpoll2 = mysql_query($getpoll); |
332 | $getpoll3 = mysql_fetch_array($getpoll2); | 332 | $getpoll3 = mysql_fetch_array($getpoll2); |
333 | 333 | ||
334 | $potw->add('QUESTION', stripslashes(htmlentities($getpoll3['question']))); | 334 | $potw->add('QUESTION', doAprilFoolsDay(stripslashes(htmlentities($getpoll3['question'])))); |
335 | $potw->add('OPTION1', stripslashes(htmlentities($getpoll3['option1']))); | 335 | $potw->add('OPTION1', doAprilFoolsDay(stripslashes(htmlentities($getpoll3['option1'])))); |
336 | $potw->add('OPTION2', stripslashes(htmlentities($getpoll3['option2']))); | 336 | $potw->add('OPTION2', doAprilFoolsDay(stripslashes(htmlentities($getpoll3['option2'])))); |
337 | $potw->add('OPTION3', stripslashes(htmlentities($getpoll3['option3']))); | 337 | $potw->add('OPTION3', doAprilFoolsDay(stripslashes(htmlentities($getpoll3['option3'])))); |
338 | $potw->add('OPTION4', stripslashes(htmlentities($getpoll3['option4']))); | 338 | $potw->add('OPTION4', doAprilFoolsDay(stripslashes(htmlentities($getpoll3['option4'])))); |
339 | 339 | ||
340 | $getip = "SELECT * FROM didpollalready WHERE ip = \"" . $_SERVER['REMOTE_ADDR'] . "\""; | 340 | $getip = "SELECT * FROM didpollalready WHERE ip = \"" . $_SERVER['REMOTE_ADDR'] . "\""; |
341 | $getip2 = mysql_query($getip); | 341 | $getip2 = mysql_query($getip); |
diff --git a/includes/layout.php b/includes/layout.php index b11c56f..566ce50 100755 --- a/includes/layout.php +++ b/includes/layout.php | |||
@@ -47,7 +47,7 @@ if (isset($hatNav) && is_array($hatNav)) | |||
47 | 47 | ||
48 | foreach ($hatNav as $item) | 48 | foreach ($hatNav as $item) |
49 | { | 49 | { |
50 | $template->adds_block('HATNAV',array('TITLE' => $item['title'], 'URL' => $item['url'], 'ICON' => $item['icon'])); | 50 | $template->adds_block('HATNAV',array('TITLE' => doAprilFoolsDay($item['title']), 'URL' => $item['url'], 'ICON' => $item['icon'])); |
51 | } | 51 | } |
52 | } | 52 | } |
53 | 53 | ||
@@ -76,7 +76,7 @@ $i=0; | |||
76 | while ($getaffs3 = mysql_fetch_array($getaffs2)) | 76 | while ($getaffs3 = mysql_fetch_array($getaffs2)) |
77 | { | 77 | { |
78 | $template->adds_block('AFFILIATES', array( 'COLOR' => getTagColor($i++), | 78 | $template->adds_block('AFFILIATES', array( 'COLOR' => getTagColor($i++), |
79 | 'TITLE' => htmlentities($getaffs3['title']), | 79 | 'TITLE' => doAprilFoolsDay(htmlentities($getaffs3['title'])), |
80 | 'URL' => $getaffs3['url'])); | 80 | 'URL' => $getaffs3['url'])); |
81 | } | 81 | } |
82 | 82 | ||
@@ -86,7 +86,7 @@ $i=0; | |||
86 | while ($getwebps3 = mysql_fetch_array($getwebps2)) | 86 | while ($getwebps3 = mysql_fetch_array($getwebps2)) |
87 | { | 87 | { |
88 | $template->adds_block('WEBPROJS', array( 'COLOR' => getTagColor($i++), | 88 | $template->adds_block('WEBPROJS', array( 'COLOR' => getTagColor($i++), |
89 | 'TITLE' => htmlentities($getwebps3['title']), | 89 | 'TITLE' => doAprilFoolsDay(htmlentities($getwebps3['title'])), |
90 | 'URL' => $getwebps3['url'])); | 90 | 'URL' => $getwebps3['url'])); |
91 | } | 91 | } |
92 | 92 | ||
@@ -235,7 +235,7 @@ $i=0; | |||
235 | while ($getpopular3[$i] = mysql_fetch_array($getpopular2)) | 235 | while ($getpopular3[$i] = mysql_fetch_array($getpopular2)) |
236 | { | 236 | { |
237 | $template->adds_block('POPULAR', array( 'CODED' => $getpopular3[$i]['slug'], | 237 | $template->adds_block('POPULAR', array( 'CODED' => $getpopular3[$i]['slug'], |
238 | 'TITLE' => stripslashes(htmlentities($getpopular3[$i]['title'])))); | 238 | 'TITLE' => doAprilFoolsDay(stripslashes(htmlentities($getpopular3[$i]['title']))))); |
239 | $i++; | 239 | $i++; |
240 | } | 240 | } |
241 | 241 | ||
@@ -278,6 +278,17 @@ $template->add('ME', getRewriteURL()); | |||
278 | 278 | ||
279 | $template->add('CONTENT', $content); | 279 | $template->add('CONTENT', $content); |
280 | 280 | ||
281 | ob_start(); | ||
281 | $template->display(); | 282 | $template->display(); |
283 | $document = ob_get_contents(); | ||
284 | ob_end_clean(); | ||
285 | |||
286 | $document = doAprilFoolsDay($document); | ||
287 | $document = str_replace(doAprilFoolsDay($content), $content, $document); | ||
288 | $document = str_replace("id=\"threem\"", "id=\"fourm\"", $document); | ||
289 | $document = str_replace("id=\"threeipedia\"", "id=\"fouripedia\"", $document); | ||
290 | $document = str_replace('CLASS="threem none threem-none"', 'CLASS="fourm none fourm-none"', $document); | ||
291 | $document = str_replace("threeisland.com/", "fourisland.com/", $document); | ||
292 | echo($document); | ||
282 | 293 | ||
283 | ?> | 294 | ?> |
diff --git a/includes/parsers.php b/includes/parsers.php index 5e984c2..b7dd869 100755 --- a/includes/parsers.php +++ b/includes/parsers.php | |||
@@ -29,6 +29,7 @@ function parseText($text) | |||
29 | { | 29 | { |
30 | $text = parseBBCode($text); | 30 | $text = parseBBCode($text); |
31 | $text = parseSmilies($text); | 31 | $text = parseSmilies($text); |
32 | $text = doAprilFoolsDay($text); | ||
32 | 33 | ||
33 | return $text; | 34 | return $text; |
34 | } | 35 | } |
diff --git a/includes/specialdates.php b/includes/specialdates.php index 067de6d..52baf2e 100755 --- a/includes/specialdates.php +++ b/includes/specialdates.php | |||
@@ -42,6 +42,7 @@ sd_lunar_annual('Presidents Day',2,1,3); //DateFinder | |||
42 | sd_solar_annual('Valentines Day',2,14); //BG Pic; DateFinder | 42 | sd_solar_annual('Valentines Day',2,14); //BG Pic; DateFinder |
43 | sd_solar_multiannual('Leap Day',2,29,4,2004); //DateFinder | 43 | sd_solar_multiannual('Leap Day',2,29,4,2004); //DateFinder |
44 | sd_solar_annual('St Patricks Day',3,17); //DateFinder | 44 | sd_solar_annual('St Patricks Day',3,17); //DateFinder |
45 | sd_solar_annual('April Fools Day',4,1); //Awesome | ||
45 | sd_solar_annual('Tri\'s CIEday',4,22); //DateFinder | 46 | sd_solar_annual('Tri\'s CIEday',4,22); //DateFinder |
46 | sd_solar_annual('Silence Day',4,25); //DateFinder | 47 | sd_solar_annual('Silence Day',4,25); //DateFinder |
47 | sd_solar_annual('WCA Day',5,5); //DateFinder | 48 | sd_solar_annual('WCA Day',5,5); //DateFinder |
@@ -310,50 +311,64 @@ function sd_addDateIn($id,$dateid) | |||
310 | 311 | ||
311 | function sd_dateFinder() | 312 | function sd_dateFinder() |
312 | { | 313 | { |
313 | if (sd_ifNoSpecialDay()) | 314 | if (sd_ifNoSpecialDay()) |
314 | { | 315 | { |
315 | $did = sd_getMonthStart(date('n')-1); | 316 | $did = sd_getMonthStart(date('n')-1); |
316 | $did += (date('j')-1); | 317 | $did += (date('j')-1); |
317 | $did = sd_findNextDay() - $did; | 318 | $did = sd_findNextDay() - $did; |
318 | return ($did . ' more days until the next holiday!'); | 319 | return ($did . ' more days until the next holiday!'); |
319 | } else { | 320 | } else { |
320 | switch (sd_getCurrentDay()) | 321 | switch (sd_getCurrentDay()) |
321 | { | 322 | { |
322 | case 'New Years Day': return 'Happy new years!'; | 323 | case 'New Years Day': return 'Happy new years!'; |
323 | case 'Martin Luther King Day': return 'Happy Martin Luther King Day!'; | 324 | case 'Martin Luther King Day': return 'Happy Martin Luther King Day!'; |
324 | case 'Groundhog Day': return 'It\'s groundhog day? Will he see his shadow?'; | 325 | case 'Groundhog Day': return 'It\'s groundhog day? Will he see his shadow?'; |
325 | case 'Presidents Day': return 'Happy President\'s Day!'; | 326 | case 'Presidents Day': return 'Happy President\'s Day!'; |
326 | case 'Valentines Day': return 'Happy Valentines Day! Will you be mine?'; | 327 | case 'Valentines Day': return 'Happy Valentines Day! Will you be mine?'; |
327 | case 'St Patricks Day': return 'Happy St. Patrick\'s Day! If you\'re not wearing green, I\'ll pinch you!'; | 328 | case 'St Patricks Day': return 'Happy St. Patrick\'s Day! If you\'re not wearing green, I\'ll pinch you!'; |
328 | case 'Mothers Day': return 'Happy Mothers Day!'; | 329 | case 'Mothers Day': return 'Happy Mothers Day!'; |
329 | case 'Memorial Day': return 'Remember...'; | 330 | case 'Memorial Day': return 'Remember...'; |
330 | case 'Easter': return 'Happy Easter! Where are those eggs?'; | 331 | case 'Easter': return 'Happy Easter! Where are those eggs?'; |
331 | case 'Mardi Gras': return 'Happy Mardi Gras! Time to get fat!'; | 332 | case 'Mardi Gras': return 'Happy Mardi Gras! Time to get fat!'; |
332 | case 'Ash Wednesday': return 'Happy Ash Wednesday! Did you get your ashes?'; | 333 | case 'Ash Wednesday': return 'Happy Ash Wednesday! Did you get your ashes?'; |
333 | case 'Palm Sunday': return 'Happy Palm Sunday!'; | 334 | case 'Palm Sunday': return 'Happy Palm Sunday!'; |
334 | case 'Holy Thursday': return 'Happy Holy Thursday!'; | 335 | case 'Holy Thursday': return 'Happy Holy Thursday!'; |
335 | case 'Hatkirbys B-Day': return 'Happy Birthday to me! Happy Birthday to me! Happy Birthday dear Hatkirby! Happy Birthday to me!'; | 336 | case 'Hatkirbys B-Day': return 'Happy Birthday to me! Happy Birthday to me! Happy Birthday dear Hatkirby! Happy Birthday to me!'; |
336 | case 'Flag Day': return 'Happy Flag Day!'; | 337 | case 'Flag Day': return 'Happy Flag Day!'; |
337 | case 'Fathers Day': return 'Happy Fathers Day!'; | 338 | case 'Fathers Day': return 'Happy Fathers Day!'; |
338 | case 'Independance Day': return 'Happy 4th of July!'; | 339 | case 'Independance Day': return 'Happy 4th of July!'; |
339 | case 'Labor Day': return 'Happy Labor Day!'; | 340 | case 'Labor Day': return 'Happy Labor Day!'; |
340 | case 'Four Island A': return ('Happy birthday Four Island! Four Island is ' . (date('Y')-2007) . ' years old!'); | 341 | case 'Four Island A': return ('Happy birthday Four Island! Four Island is ' . (date('Y')-2007) . ' years old!'); |
341 | case 'Columbus Day': return 'Happy Columbus Day!'; | 342 | case 'Columbus Day': return 'Happy Columbus Day!'; |
342 | case 'Halloween': return 'Happy Halloween!'; | 343 | case 'Halloween': return 'Happy Halloween!'; |
343 | case 'Veterans Day': return 'Only 2 minutes of silence. Remember... remember...'; | 344 | case 'Veterans Day': return 'Only 2 minutes of silence. Remember... remember...'; |
344 | case 'Thanksgiving': return 'Happy Thanksgiving! Gobble gobble gobble gobble!'; | 345 | case 'Thanksgiving': return 'Happy Thanksgiving! Gobble gobble gobble gobble!'; |
345 | case 'Kirby Week': return 'It\'s Kirby Week! Not only is it a time of celebreation and fun on Four Island, it\'s only a week before Christmas!'; | 346 | case 'Kirby Week': return 'It\'s Kirby Week! Not only is it a time of celebreation and fun on Four Island, it\'s only a week before Christmas!'; |
346 | case 'Christmas Eve': return '"1 Day Left" says Fourie!'; | 347 | case 'Christmas Eve': return '"1 Day Left" says Fourie!'; |
347 | case 'Christmas Day': return 'Merry Christmas! Time for presents!'; | 348 | case 'Christmas Day': return 'Merry Christmas! Time for presents!'; |
348 | case 'New Years Eve': return '5... 4... 3... 2...'; | 349 | case 'New Years Eve': return '5... 4... 3... 2...'; |
349 | case 'SysAdminDay': return '<A HREF="http://www.sysadminday.com">If you can read this, thank your <I><B>sysadmin</B></I></A>'; | 350 | case 'SysAdminDay': return '<A HREF="http://www.sysadminday.com">If you can read this, thank your <I><B>sysadmin</B></I></A>'; |
350 | case 'WCA Day': return '<A HREF="http://wca2001.keenspace.com">Webcomic Appreciation Day!</A> Stare in wonder at all of your favorite webcomics! Like Pillowcase, for instance!'; | 351 | case 'WCA Day': return '<A HREF="http://wca2001.keenspace.com">Webcomic Appreciation Day!</A> Stare in wonder at all of your favorite webcomics! Like Pillowcase, for instance!'; |
351 | case 'Leap Day': return 'What day is it? LEAP DAY? This only happens once every four years! LET\'S LEAP IN JOY!'; | 352 | case 'Leap Day': return 'What day is it? LEAP DAY? This only happens once every four years! LET\'S LEAP IN JOY!'; |
352 | case 'Tris CIEday': return 'This is the day that shei came.'; | 353 | case 'Tris CIEday': return 'This is the day that shei came.'; |
353 | case 'Silence Day': return 'Support LGBT people by keeping the silence until 5 PM.'; | 354 | case 'Silence Day': return 'Support LGBT people by keeping the silence until 5 PM.'; |
354 | case 'CTNH': return '<A HREF="/fuhsdiufgsadiufgaisfioas.php">It never happened.</A>'; | 355 | case 'CTNH': return '<A HREF="/fuhsdiufgsadiufgaisfioas.php">It never happened.</A>'; |
355 | } | 356 | case 'April Fools Day': return 'Long live the three!'; |
357 | } | ||
356 | } | 358 | } |
357 | } | 359 | } |
358 | 360 | ||
361 | function doAprilFoolsDay($text) | ||
362 | { | ||
363 | if (sd_isSpecialDay('April Fools Day')) | ||
364 | { | ||
365 | $text = str_replace('four', 'three', $text); | ||
366 | $text = str_replace('Four', 'Three', $text); | ||
367 | //$text = str_replace('4', '3', $text); | ||
368 | $text = str_replace('FOUR', 'THREE', $text); | ||
369 | } | ||
370 | |||
371 | return $text; | ||
372 | } | ||
373 | |||
359 | ?> | 374 | ?> |