本文整理汇总了PHP中Ak::get_url_locale方法的典型用法代码示例。如果您正苦于以下问题:PHP Ak::get_url_locale方法的具体用法?PHP Ak::get_url_locale怎么用?PHP Ak::get_url_locale使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Ak
的用法示例。
在下文中一共展示了Ak::get_url_locale方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _getLocaleForRequest
function _getLocaleForRequest(&$Request)
{
$lang = $this->getNavigationLanguage();
if ($url_locale = $this->getLangFromUrl($Request)) {
$lang = $this->getLocaleFromAlias($url_locale);
}
if (!$this->_canUseLocaleOnCurrentRequest($lang, $Request)) {
$lang = array_shift($this->getPublicLocales());
} elseif (empty($lang)) {
$lang = array_shift($this->getPublicLocales());
}
// This way we store on get_url_locale and on lang the value of $lang on
// a static variable for accessing it application wide
empty($url_locale) ? null : Ak::get_url_locale($url_locale);
Ak::lang($lang);
return $lang;
}
示例2: getLocaleFromUrl
/**
* Returns the locale identifier of current URL
*/
function getLocaleFromUrl()
{
$locale = Ak::get_url_locale();
if (strstr(AK_CURRENT_URL, AK_SITE_URL . '/' . $locale)) {
return $locale;
}
return '';
}
示例3: getLocaleFromUrl
/**
* Returns the locale identifier of current URL
*/
public function getLocaleFromUrl()
{
$locale = Ak::get_url_locale();
if (strstr($this->getUrl(), AK_SITE_URL . $locale)) {
return $locale;
}
return '';
}