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

19 lines
393 B
PHP
Raw Normal View History

2021-12-14 18:32:47 +00:00
<?php
declare(strict_types=1);
namespace Shimmie2;
class HolidayTheme extends Themelet
{
public function display_holiday(?string $holiday)
{
global $page;
if ($holiday) {
$page->add_html_header(
"<link rel='stylesheet' href='".get_base_href()."/contrib/holiday/stylesheets/$holiday.css' type='text/css'>"
);
}
}
2012-01-18 09:55:00 +00:00
}