blob: 844c0379319fba68b24dc6ce7315dc5cc5c43eb1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?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' ));
?>
|