本文整理匯總了PHP中waRequest::getLocale方法的典型用法代碼示例。如果您正苦於以下問題:PHP waRequest::getLocale方法的具體用法?PHP waRequest::getLocale怎麽用?PHP waRequest::getLocale使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類waRequest
的用法示例。
在下文中一共展示了waRequest::getLocale方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getLocale
/**
* Returns contact's locale id.
*
* @return string
*/
public function getLocale()
{
if (!$this->id) {
$locale = isset($this->data['locale']) ? $this->data['locale'] : null;
if (!$locale) {
$locale = waRequest::get('lang');
}
} else {
if (isset(self::$cache[$this->id]['locale'])) {
$locale = self::$cache[$this->id]['locale'];
} else {
$contact_model = new waContactModel();
$contact_info = $contact_model->getById($this->id);
$this->setCache($contact_info);
$locale = isset($contact_info['locale']) ? $contact_info['locale'] : '';
}
}
if (wa()->getEnv() == 'frontend' && waRequest::param('locale')) {
return waRequest::param('locale');
}
// try get locale by header Accept-Language (only for current user)
if (!$locale && $this instanceof waAuthUser) {
$locale = waRequest::getLocale();
}
if (!$locale) {
$locale = self::$options['default']['locale'];
}
return $locale;
}