本文整理匯總了PHP中Locales::getLocaleCodes方法的典型用法代碼示例。如果您正苦於以下問題:PHP Locales::getLocaleCodes方法的具體用法?PHP Locales::getLocaleCodes怎麽用?PHP Locales::getLocaleCodes使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Locales
的用法示例。
在下文中一共展示了Locales::getLocaleCodes方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: indexAction
function indexAction()
{
$params = array('locale_code' => $this->locale_code, 'request' => $this->getRequest());
if ($this->_auth->hasIdentity()) {
$params['is_admin'] = $this->_identity->isAdmin;
} else {
$params['is_admin'] = false;
}
$additional = $this->_Bolts_plugin->doFilter($this->_mca, $params);
// FILTER HOOK
foreach ($additional as $key => $value) {
$this->view->{$key} = $value;
}
// $this->view->welcome = $this->_T("Welcome!");
// TODO - find out if there is a valid cookie
// then redirect to that locale
// or redirect to the default locale
// ONLY if localization is enabled
// if localization is enabled and the URI does not contain a locale code
// and there is not a valid locale cookie
// redirect to a URI that contains the default locale code
if (Bolts_Registry::get('enable_localization') == '1') {
$locales_table = new Locales();
$locale_codes = $locales_table->getLocaleCodes(true);
$uri_parts = explode("/", trim($this->_uri, "/"));
if (count($uri_parts) > 0 && !in_array($uri_parts[0], $locale_codes)) {
// redirect method will automatically add the correct locale code to the URI
$this->_redirect("/");
}
}
}