blob: 1f895ce16924f648c52b33037a19dced37145b31 (
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/setup_inc.php' );
global $gContent, $gBitSystem;
include_once( LIBERTY_PKG_PATH.'lookup_content_inc.php' );
$gContent->mInfo['rendered'] = $gContent->getPreview();
$gBitSmarty->assign('cellHash', $gContent->mInfo);
$gBitSmarty->display( "bitpackage:calendar/calendar_box.tpl" );
|