Файл: concrete5.7.5.6/concrete/vendor/zendframework/zend-i18n/src/Filter/AbstractLocale.php
Строк: 67
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
namespace ZendI18nFilter;
use Locale;
use ZendFilterAbstractFilter;
use ZendI18nException;
abstract class AbstractLocale extends AbstractFilter
{
/**
* @throws ExceptionExtensionNotLoadedException if ext/intl is not present
*/
public function __construct()
{
if (!extension_loaded('intl')) {
throw new ExceptionExtensionNotLoadedException(sprintf(
'%s component requires the intl PHP extension',
__NAMESPACE__
));
}
}
/**
* Sets the locale option
*
* @param string|null $locale
* @return AbstractLocale
*/
public function setLocale($locale = null)
{
$this->options['locale'] = $locale;
return $this;
}
/**
* Returns the locale option
*
* @return string
*/
public function getLocale()
{
if (!isset($this->options['locale'])) {
$this->options['locale'] = Locale::getDefault();
}
return $this->options['locale'];
}
}