All pastes #2066761 Raw Edit

Miscellany

public text v1 · immutable
#2066761 ·published 2011-05-22 11:39 UTC
rendered paste body
<?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);
	}
}

?>