本文整理汇总了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("/");
}
}
}