Miscellany
public text v1 · immutable<?php if (!defined('TL_ROOT')) die('You cannot access this file directly!');
class ModuleDailySubReader extends Module
{
protected $strTemplate = 'mod_dailysubreader';
protected function compile()
{
$today = strtolower(date('l'));
$this->Template->image = getImage($GLOBALS['TL_CONFIG']['dailysub_'.$today], 300, 200);
}
}
?>