本文整理汇总了PHP中erLhcoreClassModule::defaultTimeZone方法的典型用法代码示例。如果您正苦于以下问题:PHP erLhcoreClassModule::defaultTimeZone方法的具体用法?PHP erLhcoreClassModule::defaultTimeZone怎么用?PHP erLhcoreClassModule::defaultTimeZone使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类erLhcoreClassModule
的用法示例。
在下文中一共展示了erLhcoreClassModule::defaultTimeZone方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: array
$inputData->value_items = array();
$inputData->value_types = array();
$inputData->value_sizes = array();
$inputData->hattr = array();
if ((string) $Params['user_parameters_unordered']['vid'] != '') {
$inputData->vid = (string) $Params['user_parameters_unordered']['vid'];
}
// Assign department instantly
if ($inputData->departament_id > 0) {
$tpl->set('department', $inputData->departament_id);
} else {
$tpl->set('department', false);
}
// Set time zone if script detected it
if ($userInstance->visitor_tz != '') {
erLhcoreClassModule::$defaultTimeZone = $userInstance->visitor_tz;
date_default_timezone_set(erLhcoreClassModule::$defaultTimeZone);
}
$tpl->set('playsound', (string) $Params['user_parameters_unordered']['playsound'] == 'true' && !isset($_POST['askQuestion']) && erLhcoreClassModelChatConfig::fetch('sound_invitation')->current_value == 1);
$chat = new erLhcoreClassModelChat();
$modeAppendTheme = '';
if (isset($Params['user_parameters_unordered']['theme']) && (int) $Params['user_parameters_unordered']['theme'] > 0) {
try {
$theme = erLhAbstractModelWidgetTheme::fetch($Params['user_parameters_unordered']['theme']);
$Result['theme'] = $theme;
$modeAppendTheme = '/(theme)/' . $theme->id;
} catch (Exception $e) {
}
} else {
$defaultTheme = erLhcoreClassModelChatConfig::fetch('default_theme_id')->current_value;
if ($defaultTheme > 0) {
示例2: setTimeZoneByChat
public static function setTimeZoneByChat($chat)
{
if ($chat->user_tz_identifier != '') {
erLhcoreClassModule::$defaultTimeZone = $chat->user_tz_identifier;
date_default_timezone_set(erLhcoreClassModule::$defaultTimeZone);
}
}
示例3: moduleInit
public static function moduleInit($params = array())
{
$cfg = erConfigClassLhConfig::getInstance();
self::$debugEnabled = $cfg->getSetting('site', 'debug_output');
// Enable errors output before extensions intialization
if (self::$debugEnabled == true) {
@ini_set('error_reporting', E_ALL);
@ini_set('display_errors', 1);
}
self::$cacheInstance = CSCacheAPC::getMem();
self::$cacheVersionSite = self::$cacheInstance->getCacheVersion('site_version');
self::$defaultTimeZone = $cfg->getSetting('site', 'time_zone', false);
self::$dateFormat = $cfg->getSetting('site', 'date_format', false);
self::$dateHourFormat = $cfg->getSetting('site', 'date_hour_format', false);
self::$dateDateHourFormat = $cfg->getSetting('site', 'date_date_hour_format', false);
$url = erLhcoreClassURL::getInstance();
if (!isset($params['ignore_extensions'])) {
// Attatch extension listeners
self::attatchExtensionListeners();
}
self::$currentModuleName = preg_replace('/[^a-zA-Z0-9\\-_]/', '', $url->getParam('module'));
self::$currentView = preg_replace('/[^a-zA-Z0-9\\-_]/', '', $url->getParam('function'));
if (self::$currentModuleName == '' || (self::$currentModule = self::getModule(self::$currentModuleName)) === false) {
$params = $cfg->getOverrideValue('site', 'default_url');
if (self::$currentModuleName != '') {
header("HTTP/1.1 301 Moved Permanently");
self::redirect();
exit;
}
self::$currentView = $params['view'];
self::$currentModuleName = $params['module'];
erLhcoreClassChatEventDispatcher::getInstance()->dispatch('chat.core.default_url', array('url' => &$url));
self::$currentModule = self::getModule(self::$currentModuleName);
}
return self::runModule();
}
示例4: run
public function run()
{
$dispatcher = erLhcoreClassChatEventDispatcher::getInstance();
// Attatch event listeners
$dispatcher->listen('user.edit.photo_path', array($this, 'userEditPhotoPath'));
$dispatcher->listen('chat.getstatus', array($this, 'getStatus'));
$dispatcher->listen('file.storescreenshot.screenshot_path', array($this, 'screenshotPath'));
$dispatcher->listen('file.uploadfile.file_path', array($this, 'screenshotPath'));
$dispatcher->listen('file.uploadfileadmin.file_path', array($this, 'screenshotPath'));
$dispatcher->listen('file.new.file_path', array($this, 'newFilePath'));
// Themes listeners
$dispatcher->listen('theme.edit.logo_image_path', array($this, 'themeStoragePath'));
$dispatcher->listen('theme.edit.need_help_image_path', array($this, 'themeStoragePath'));
$dispatcher->listen('theme.edit.offline_image_path', array($this, 'themeStoragePath'));
$dispatcher->listen('theme.edit.online_image_path', array($this, 'themeStoragePath'));
$dispatcher->listen('theme.edit.copyright_image_path', array($this, 'themeStoragePath'));
$dispatcher->listen('theme.edit.operator_image_path', array($this, 'themeStoragePath'));
$dispatcher->listen('theme.edit.popup_image_path', array($this, 'themeStoragePath'));
$dispatcher->listen('theme.edit.close_image_path', array($this, 'themeStoragePath'));
$dispatcher->listen('theme.edit.restore_image_path', array($this, 'themeStoragePath'));
$dispatcher->listen('theme.edit.minimize_image_path', array($this, 'themeStoragePath'));
// Permissions
$dispatcher->listen('feature.can_use_forms', array($this, 'canUseForms'));
$dispatcher->listen('form.index', array($this, 'canUseForms'));
$dispatcher->listen('form.embedcode', array($this, 'canUseForms'));
// Canned messages
$dispatcher->listen('chat.cannedmsg', array($this, 'canUseCannedMessages'));
$dispatcher->listen('chat.newcannedmsg', array($this, 'canUseCannedMessages'));
// FAQ
$dispatcher->listen('faq.list', array($this, 'canUseFAQ'));
$dispatcher->listen('faq.view', array($this, 'canUseFAQ'));
// SugarCRM
$dispatcher->listen('sugarcrm.createorupdatelead', array($this, 'canUseSugarCRM'));
// Browse offers
$dispatcher->listen('browseoffer.index', array($this, 'canUseBO'));
$dispatcher->listen('browseoffer.htmlcode', array($this, 'canUseBO'));
$dispatcher->listen('feature.can_use_browse_offers', array($this, 'canUseBO'));
// Questionary
$dispatcher->listen('questionary.edit', array($this, 'canUseQuestionary'));
$dispatcher->listen('questionary.list', array($this, 'canUseQuestionary'));
$dispatcher->listen('questionary.new', array($this, 'canUseQuestionary'));
// Chatbox
$dispatcher->listen('chatbox.list', array($this, 'canUseChatbox'));
$dispatcher->listen('chatbox.configuration', array($this, 'canUseChatbox'));
// Statistic
$dispatcher->listen('chat.statistic', array($this, 'canUseStatistic'));
// Pro active
$dispatcher->listen('feature.can_use_proactive', array($this, 'canUseProactive'));
// Auto responder
$dispatcher->listen('feature.can_use_autoresponder', array($this, 'canUseAutoresponder'));
$dispatcher->listen('chat.geoadjustment', array($this, 'canUseGeoAdjustment'));
// Block users
$dispatcher->listen('chat.blockedusers', array($this, 'canUseBlock'));
// XMPP send message action
$dispatcher->listen('xml.send_xmp_message', array($this, 'xmppSendMessage'));
// Automated hosting overrides mail sending parameters
$dispatcher->listen('chatmail.setup_smtp', array($this, 'setupSMTP'));
// temporary path
$dispatcher->listen('theme.temppath', array($this, 'tempStoragePath'));
// Disable database variables cache
$dispatcher->listen('tpl.new', array($this, 'changeTemplateSettings'));
// Forms module listener
$dispatcher->listen('form.fill.file_path', array($this, 'formFillPath'));
$dispatcher->listen('xmp.configuration', array($this, 'canUseXMPP'));
// Translation config
$dispatcher->listen('translation.get_config', array($this, 'getTranslationConfig'));
// Check can user create a new operators
$dispatcher->listen('user.new_user', array($this, 'canNewUserCanBeCreated'));
$dispatcher->listen('user.edit_user', array($this, 'canUserBeSaved'));
$dispatcher->listen('chat.sendnotice', array($this, 'canSendNotice'));
$dispatcher->listen('chat.chatcheckoperatormessage', array($this, 'proactiveIsEnabled'));
$instanceCustomer = erLhcoreClassInstance::getInstance();
if (is_object($instanceCustomer)) {
erLhcoreClassModule::$cacheDbVariables = false;
// Disable cache expire for customers, only through command line possible
erConfigClassLhCacheConfig::getInstance()->setExpiredInRuntime(true);
erLhcoreClassModule::$defaultTimeZone = $instanceCustomer->time_zone;
erLhcoreClassModule::$dateFormat = $instanceCustomer->date_format;
erLhcoreClassModule::$dateHourFormat = $instanceCustomer->date_hour_format;
erLhcoreClassModule::$dateDateHourFormat = $instanceCustomer->date_date_hour_format;
// Check one logged user per account
if ($instanceCustomer->one_per_account == 1) {
// Set instance policy regarding how many operators can be looged under same account
erLhcoreClassUser::$oneLoginPerAccount = $instanceCustomer->one_per_account == 1;
}
$cfgSite = erConfigClassLhConfig::getInstance();
$sysConfiguration = erLhcoreClassSystem::instance();
$defaultSiteAccess = $cfgSite->getSetting('site', 'default_site_access');
// Perhaps we need to change default siteaccess
if ($sysConfiguration->SiteAccess != 'site_admin' && $sysConfiguration->SiteAccess == $defaultSiteAccess && !isset($_POST['switchLang']) && $instanceCustomer->siteaccess != '' && $instanceCustomer->siteaccess != $sysConfiguration->SiteAccess) {
$optionsSiteAccessOverride = $cfgSite->getSetting('site_access_options', $instanceCustomer->siteaccess);
$sysConfiguration->Language = $optionsSiteAccessOverride['locale'];
$sysConfiguration->SiteAccess = $instanceCustomer->siteaccess;
$sysConfiguration->ContentLanguage = $optionsSiteAccessOverride['content_language'];
$sysConfiguration->ThemeSite = $optionsSiteAccessOverride['theme'];
if ($defaultSiteAccess != $sysConfiguration->SiteAccess) {
$sysConfiguration->WWWDirLang = '/' . $sysConfiguration->SiteAccess;
}
}
}
//.........这里部分代码省略.........
示例5: moduleInit
public static function moduleInit()
{
$url = erLhcoreClassURL::getInstance();
$cfg = erConfigClassLhConfig::getInstance();
self::$currentModuleName = preg_replace('/[^a-zA-Z0-9\\-_]/', '', $url->getParam('module'));
self::$currentView = preg_replace('/[^a-zA-Z0-9\\-_]/', '', $url->getParam('function'));
self::$cacheInstance = CSCacheAPC::getMem();
self::$cacheVersionSite = self::$cacheInstance->getCacheVersion('site_version');
self::$defaultTimeZone = $cfg->getSetting('site', 'time_zone', false);
self::$dateFormat = $cfg->getSetting('site', 'date_format', false);
self::$dateHourFormat = $cfg->getSetting('site', 'date_hour_format', false);
self::$dateDateHourFormat = $cfg->getSetting('site', 'date_date_hour_format', false);
if (self::$currentModuleName == '' || (self::$currentModule = self::getModule(self::$currentModuleName)) === false) {
$params = $cfg->getOverrideValue('site', 'default_url');
if (self::$currentModuleName != '') {
header("HTTP/1.1 301 Moved Permanently");
self::redirect();
exit;
}
self::$currentView = $params['view'];
self::$currentModuleName = $params['module'];
self::$currentModule = self::getModule(self::$currentModuleName);
}
return self::runModule();
}