blob: c3d57b0c8518f1d3d5ae73a813a9d387eea9b120 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
/**
* @version $Header$
* @package calendar
* @subpackage modules
*/
/**
* Required setup
*/
global $gBitSmarty;
// Make sure we know how to do the data_calendar
require_once(CALENDAR_PKG_PATH.'liberty_plugins/data.calendar.php');
$_template->tpl_vars['mini_cal'] = new Smarty_variable(data_calendar( '', empty($moduleParams['module_params']) ) );
?>
|