當前位置: 首頁>>代碼示例>>PHP>>正文


PHP UserConfig::saveConfig方法代碼示例

本文整理匯總了PHP中UserConfig::saveConfig方法的典型用法代碼示例。如果您正苦於以下問題:PHP UserConfig::saveConfig方法的具體用法?PHP UserConfig::saveConfig怎麽用?PHP UserConfig::saveConfig使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在UserConfig的用法示例。


在下文中一共展示了UserConfig::saveConfig方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: setcookie

    //save browser info to user config array
    // *****************************
    if (empty($ip)) {
        $USERCONFIG['ip'] = $REMOTE_ADDR;
    }
    $USERCONFIG['mask'] = $mask;
    $USERCONFIG['lang'] = $lang;
    if (($bname == 'msie' || $bname == 'opera') && $bversion > 4 || $bname == 'netscape' && $bversion > 3.5 || $bname == 'mozilla') {
        $USERCONFIG['dhtml'] = 1;
    }
    // *****************************
    // Save config to db
    // *****************************
    $mask = $USERCONFIG['mask'];
    # save mask before serializing
    $cfg_obj->saveConfig($user_id, $USERCONFIG);
    setcookie('ck_config', $user_id, time() + 3600 * 24 * 365);
    # expires after 1 year
}
#
# save user_id to session
#
$HTTP_SESSION_VARS['sess_user_id'] = $user_id;
if (empty($HTTP_SESSION_VARS['sess_user_name'])) {
    $HTTP_SESSION_VARS['sess_user_name'] = 'default';
}
#
# set the initial session timeout start value
#
$HTTP_SESSION_VARS['sess_tos'] = date('His');
#
開發者ID:tejdeeps,項目名稱:tejcs.com,代碼行數:31,代碼來源:index.php

示例2: array

$lang_tables = array('stdpass.php');
define('LANG_FILE', 'specials.php');
//$local_user='ck_edv_user';
define('NO_2LEVEL_CHK', 1);
require_once $root_path . 'include/inc_front_chain_lang.php';
$breakfile = 'config_options.php' . URL_APPEND;
$thisfile = basename($_SERVER['PHP_SELF']);
if (isset($mode) && $mode == 'save') {
    // Save to user config table
    $config_new['template_smarty'] = $template_smarty;
    include_once $root_path . 'include/care_api_classes/class_userconfig.php';
    $user = new UserConfig();
    if ($user->getConfig($_COOKIE['ck_config'])) {
        $config =& $user->getConfigData();
        $config = array_merge($config, $config_new);
        if ($user->saveConfig($_COOKIE['ck_config'], $config)) {
            header('location:' . basename(__FILE__) . URL_REDIRECT_APPEND . '&saved=1');
            exit;
        }
    }
} elseif (!isset($cfg['template_smarty']) || empty($cfg['template_smarty'])) {
    if (!isset($GLOBAL_CONFIG)) {
        $GLOBAL_CONFIG = array();
    }
    include_once $root_path . 'include/care_api_classes/class_globalconfig.php';
    $gc = new GlobalConfig($GLOBAL_CONFIG);
    $gc->getConfig('template_smarty');
    if (!empty($GLOBAL_CONFIG['template_smarty'])) {
        $cfg['template_smarty'] = $GLOBAL_CONFIG['template_smarty'];
    } else {
        $cfg['template_smarty'] = 'default';
開發者ID:patmark,項目名稱:care2x-tz,代碼行數:31,代碼來源:config_options_smarty.php


注:本文中的UserConfig::saveConfig方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。