• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP get_sugarbeat函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中get_sugarbeat函数的典型用法代码示例。如果您正苦于以下问题:PHP get_sugarbeat函数的具体用法?PHP get_sugarbeat怎么用?PHP get_sugarbeat使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



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

示例1: rebuildSprites

    rebuildSprites(true);
}
require_once 'modules/Administration/upgrade_custom_relationships.php';
upgrade_custom_relationships();
require_once 'modules/UpgradeWizard/uw_utils.php';
/*
if($_SESSION['current_db_version'] < '620')
{
	upgradeDateTimeFields($path);
	upgradeDocumentTypeFields($path);
}
*/
//Update the license
logThis('Start Updating the license ', $path);
ob_start();
check_now(get_sugarbeat());
ob_end_clean();
logThis('End Updating the license ', $path);
set_upgrade_progress('end', 'done');
logThis('Cleaning up the session.  Goodbye.');
unlinkUWTempFiles();
logThis('Cleaning up the session.  Goodbye.');
resetUwSession();
// flag to say upgrade has completed
$_SESSION['upgrade_complete'] = true;
//Clear any third party caches
sugar_cache_reset_full();
//add the clean vardefs here
if (!class_exists('VardefManager')) {
}
VardefManager::clearVardef();
开发者ID:netconstructor,项目名称:sugarcrm_dev,代码行数:31,代码来源:end.php


示例2: loginLicense

function loginLicense()
{
    global $current_user, $license, $authLevel;
    loadLicense(true);
    $authLevel = 0;
    if (shouldCheckSugar()) {
        $last_check_date = get_last_check_date_config_setting();
        $current_date_time = time();
        $time_period = 3 * 23 * 3600;
        if ($current_date_time - $last_check_date > $time_period) {
            $version = check_now(get_sugarbeat());
            unset($_SESSION['license_seats_needed']);
            loadLicense();
            set_last_check_date_config_setting("{$current_date_time}");
            include 'sugar_version.php';
            if (!empty($version) && count($version) == 1 && $version[0]['version'] > $sugar_version && is_admin($current_user)) {
                //set session variables.
                $_SESSION['available_version'] = $version[0]['version'];
                $_SESSION['available_version_description'] = $version[0]['description'];
                set_last_check_version_config_setting($version[0]['version']);
            }
        }
    }
}
开发者ID:sysraj86,项目名称:carnivalcrm,代码行数:24,代码来源:updater_utils.php


示例3: sugar_die

if (isset($GLOBALS['sugar_config']['hide_admin_licensing']) && $GLOBALS['sugar_config']['hide_admin_licensing']) {
    sugar_die(translate('LBL_LICENSE_UNAUTHORIZED_ACCESS', 'Administration'));
}
if (isset($_REQUEST['validate'])) {
    checkDownloadKey();
}
$focus = Administration::getSettings();
if (!empty($_FILES['VKFile'])) {
    $response_data = array();
    $response_data['key'] = $focus->settings['license_key'];
    $response_data['data'] = file_get_contents($_FILES['VKFile']['tmp_name']);
    check_now(false, true, $response_data);
    $focus->retrieveSettings(false, true);
}
if (!empty($_REQUEST['exportKey'])) {
    $content = check_now(get_sugarbeat(), true);
    header("Content-Disposition: attachment; filename=sugarkey.lic");
    header("Content-Type: text/plain; charset={$app_strings['LBL_CHARSET']}");
    header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
    header("Last-Modified: " . TimeDate::httpTime());
    header("Cache-Control: max-age=0");
    header("Pragma: public");
    header("Content-Length: " . strlen($content));
    echo $content;
    die;
}
echo getClassicModuleTitle("Administration", array("<a href='index.php?module=Administration&action=index'>" . translate('LBL_MODULE_NAME', 'Administration') . "</a>", $mod_strings['LBL_MANAGE_LICENSE_TITLE']), false);
global $currentModule;
$GLOBALS['log']->info("Administration LicenseSettings view");
$xtpl = new XTemplate('modules/Administration/LicenseSettings.html');
$xtpl->assign("MOD", $mod_strings);
开发者ID:jglaine,项目名称:sugar761-ent,代码行数:31,代码来源:LicenseSettings.php


示例4: loginLicense

function loginLicense()
{
    global $current_user, $license;
    loadLicense(true);
    if (isset($_SESSION['EXCEEDS_MAX_USERS']) && $_SESSION['EXCEEDS_MAX_USERS'] == 1 || empty($license->settings['license_key']) || !empty($license->settings['license_last_validation']) && $license->settings['license_last_validation'] == 'failed' && !empty($license->settings['license_last_validation_fail']) && (empty($license->settings['license_last_validation_success']) || $license->settings['license_last_validation_fail'] > $license->settings['license_last_validation_success'])) {
        if (!is_admin($current_user)) {
            $GLOBALS['login_error'] = $GLOBALS['app_strings']['ERROR_LICENSE_VALIDATION'];
            $_SESSION['login_error'] = $GLOBALS['login_error'];
        } else {
            if (empty($license->settings['license_key'])) {
                $_SESSION['VALIDATION_EXPIRES_IN'] = 'REQUIRED';
            } else {
                $_SESSION['COULD_NOT_CONNECT'] = $license->settings['license_last_validation_fail'];
            }
        }
    }
    if (shouldCheckSugar()) {
        $last_check_date = get_last_check_date_config_setting();
        $current_date_time = time();
        $time_period = 3 * 23 * 3600;
        if ($current_date_time - $last_check_date > $time_period || empty($license->settings['license_last_validation_success'])) {
            $version = check_now(get_sugarbeat());
            unset($_SESSION['license_seats_needed']);
            unset($_SESSION['LICENSE_EXPIRES_IN']);
            unset($_SESSION['VALIDATION_EXPIRES_IN']);
            unset($_SESSION['HomeOnly']);
            loadLicense();
            set_last_check_date_config_setting("{$current_date_time}");
            include 'sugar_version.php';
            $newVersion = '';
            if (!empty($version) && count($version) == 1) {
                $newVersion = $version[0]['version'];
            }
            if (version_compare($newVersion, $sugar_version, '>') && is_admin($current_user)) {
                //set session variables.
                $_SESSION['available_version'] = $version[0]['version'];
                $_SESSION['available_version_description'] = $version[0]['description'];
                set_last_check_version_config_setting($version[0]['version']);
            }
        }
    }
    // This section of code is a portion of the code referred
    // to as Critical Control Software under the End User
    // License Agreement.  Neither the Company nor the Users
    // may modify any portion of the Critical Control Software.
    if (!authenticateDownloadKey() && !ocLicense()) {
        if (is_admin($current_user)) {
            $_SESSION['HomeOnly'] = true;
        } else {
            $_SESSION['login_error'] = $GLOBALS['app_strings']['ERROR_LICENSE_VALIDATION'];
            $GLOBALS['login_error'] = $GLOBALS['app_strings']['ERROR_LICENSE_VALIDATION'];
        }
    }
    //END REQUIRED CODE DO NOT MODIFY
}
开发者ID:jglaine,项目名称:sugar761-ent,代码行数:55,代码来源:updater_utils.php


示例5: set_CheckUpdates_config_setting

if (isset($_REQUEST['useraction']) && ($_REQUEST['useraction'] == 'Save' || $_REQUEST['useraction'] == 'CheckNow')) {
    if (!empty($_REQUEST['type']) && $_REQUEST['type'] == 'automatic') {
        set_CheckUpdates_config_setting('automatic');
    } else {
        set_CheckUpdates_config_setting('manual');
    }
    $beat = false;
    if (!empty($_REQUEST['beat'])) {
        $beat = true;
    }
    if ($beat != get_sugarbeat()) {
        set_sugarbeat($beat);
    }
}
echo getClassicModuleTitle("Administration", array("<a href='index.php?module=Administration&action=index'>" . translate('LBL_MODULE_NAME', 'Administration') . "</a>", $mod_strings['LBL_SUGAR_UPDATE_TITLE']), false);
if (get_sugarbeat()) {
    $xtpl->assign("SEND_STAT_CHECKED", "checked");
}
if (get_CheckUpdates_config_setting() == 'automatic') {
    $xtpl->assign("AUTOMATIC_CHECKED", "checked");
}
/*if (isset($_REQUEST['useraction']) && $_REQUEST['useraction']=='CheckNow') {
	check_now(get_sugarbeat());
	loadLicense();

}*/
$xtpl->parse('main.stats');
$has_updates = false;
if (!empty($license->settings['license_latest_versions'])) {
    $encodedVersions = $license->settings['license_latest_versions'];
    $versions = unserialize(base64_decode($encodedVersions));
开发者ID:MexinaD,项目名称:SuiteCRM,代码行数:31,代码来源:Updater.php



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP get_summary函数代码示例发布时间:2022-05-15
下一篇:
PHP get_sugar_config_defaults函数代码示例发布时间:2022-05-15
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap