Ejemplo n.º 1
0
 /**
  * @param  string|int $value
  * @return string
  */
 protected function _rangeValue($value)
 {
     if (null === $this->_months) {
         $this->_months = Core_Util_Locale::getMonths($this->getLocale(), $this->_resolveFlagFullName());
     }
     return ucfirst($this->_months[$value]);
 }