当前位置: 首页>>代码示例>>PHP>>正文


PHP UserConfig::getConfigData方法代码示例

本文整理汇总了PHP中UserConfig::getConfigData方法的典型用法代码示例。如果您正苦于以下问题:PHP UserConfig::getConfigData方法的具体用法?PHP UserConfig::getConfigData怎么用?PHP UserConfig::getConfigData使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在UserConfig的用法示例。


在下文中一共展示了UserConfig::getConfigData方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: array

* See the file "copy_notice.txt" for the licence notice
*/
$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'];
开发者ID:patmark,项目名称:care2x-tz,代码行数:31,代码来源:config_options_smarty.php


注:本文中的UserConfig::getConfigData方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。