This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/ext/holiday/theme.php

21 lines
493 B
PHP
Raw Normal View History

2012-01-18 09:55:00 +00:00
<?php
class HolidayTheme extends Themelet {
public function display_holiday($date) {
global $page;
if($date){
2012-01-18 16:08:51 +00:00
$csssheet = "<link rel='stylesheet' href='".get_base_href()."/contrib/holiday/stylesheets/";
2012-01-18 09:55:00 +00:00
// April Fools
// Flips the entire page upside down!
// TODO: Make it possible for the user to turn this off!
if(date('d/m') == '01/04'){
$csssheet .= "aprilfools.css";
}
$csssheet .= "' type='text/css'>";
$page->add_html_header("$csssheet");
}
}
}
?>