本文整理匯總了PHP中func::isModActive方法的典型用法代碼示例。如果您正苦於以下問題:PHP func::isModActive方法的具體用法?PHP func::isModActive怎麽用?PHP func::isModActive使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類func
的用法示例。
在下文中一共展示了func::isModActive方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: auth
}
$cfg = $func->read_db_config();
// Config-Tabelle aulesen
$sec->check_blacklist();
// Set timezone info (php + mysql)
if ($cfg['sys_timezone'] and function_exists('date_default_timezone_set')) {
#date_default_timezone_set($cfg['sys_timezone']);
#$db->qry('SET SESSION time_zone = %string%', $cfg['sys_timezone']);
##$db->qry('SET SESSION time_zone = \'+0:00\'');
}
if (!$_GET['mod']) {
$_GET['mod'] = 'home';
}
$func->getActiveModules();
$framework->AddToPageTitle($cfg['sys_page_title']);
if ($func->isModActive($_GET['mod'], $caption) && $_GET['mod'] != 'home') {
$framework->AddToPageTitle($caption);
}
### Start autentication, just if LS is working
include_once "inc/classes/class_auth.php";
$authentication = new auth($frmwrkmode);
$auth = $authentication->check_logon();
// Testet Cookie / Session ob User eingeloggt ist
$olduserid = $authentication->get_olduserid();
// Olduserid for Switback on Boxes
}
// Initialize party
// Needed also, when not configured for LanSurfer Import
if ($func->isModActive('party')) {
include_once "modules/party/class_party.php";
$party = new party();