本文整理汇总了PHP中Conf::setValues方法的典型用法代码示例。如果您正苦于以下问题:PHP Conf::setValues方法的具体用法?PHP Conf::setValues怎么用?PHP Conf::setValues使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Conf
的用法示例。
在下文中一共展示了Conf::setValues方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: elseif
} else {
if (!empty($conf->multicompany->force_entity) && is_numeric($conf->multicompany->force_entity)) {
$conf->entity = $conf->multicompany->force_entity;
}
}
}
}
}
}
// Sanitize entity
if (!is_numeric($conf->entity)) {
$conf->entity = 1;
}
//print "Will work with data into entity instance number '".$conf->entity."'";
// Here we read database (llx_const table) and define $conf->global->XXX var.
$conf->setValues($db);
}
// Overwrite database value
if (!empty($conf->file->mailing_limit_sendbyweb)) {
$conf->global->MAILING_LIMIT_SENDBYWEB = $conf->file->mailing_limit_sendbyweb;
}
// If software has been locked. Only login $conf->global->MAIN_ONLY_LOGIN_ALLOWED is allowed.
if (!empty($conf->global->MAIN_ONLY_LOGIN_ALLOWED)) {
$ok = 0;
if ((!session_id() || !isset($_SESSION["dol_login"])) && !isset($_POST["username"]) && !empty($_SERVER["GATEWAY_INTERFACE"])) {
$ok = 1;
} elseif (isset($_POST["username"]) && $_POST["username"] == $conf->global->MAIN_ONLY_LOGIN_ALLOWED) {
$ok = 1;
} elseif (defined('NOREQUIREDB')) {
$ok = 1;
} elseif (defined('EVEN_IF_ONLY_LOGIN_ALLOWED')) {