blob: 6d90d342b2e4222d2e368fc160f1465ec8d249af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?php
/**
* @version $Header$
* @package calendar
* @subpackage functions
*
* @copyright Copyright (c) 2004-2006, bitweaver.org
* All Rights Reserved. See below for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See http://www.gnu.org/copyleft/lesser.html for details.
*/
/**
* Setup
*/
require_once '../kernel/includes/setup_inc.php';
global $gContent, $gBitSystem;
include_once( LIBERTY_PKG_INCLUDE_PATH.'lookup_content_inc.php' );
$gContent->mInfo['rendered'] = $gContent->getPreview();
$gBitSmarty->assign('cellHash', $gContent->mInfo);
$gBitSmarty->display( "bitpackage:calendar/calendar_box.tpl" );
|