blob: 08016f6fd6be659fdac149993eec255d630d4082 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?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
*/
if( !empty( $module_params ) ) {
$gBitSmarty->assign( 'modParams', $module_params );
}
$gBitSmarty->assign( 'adSenseActive', !empty($module_params['client']) && $gBitSystem->isFeatureActive( 'liberty_plugin_status_dataadsense' ) );
?>
|