blob: eda2660549a21bdbc4df470867dcacc42cb95398 (
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
/**
* $Header$
*
* Copyright ( c ) 2004 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
*
* @package kernel
* @subpackage modules
*/
global $gBitDbSystem;
$gBitSmarty->assign( 'gBitDbSystem', $gBitDbSystem );
if( !isset( $moduleParams['module_params']['no_dblogo'] )) {
global $gBitDbType;
$gBitSmarty->assign( 'gBitDbType', $gBitDbType );
}
if( isset( $moduleParams['module_params']['large'] ) || $gBitSystem->getConfig( 'site_icon_size', 'small' ) == 'large' ) {
$gBitSmarty->assign( 'size', '/large' );
}
?>
|