getDateStart()->getLocalized($this->translator->translate('CoreHome_ShortMonthFormat')); return $out; } /** * Returns the current period as a localized long string * * @return string */ public function getLocalizedLongString() { //"August 2009" $out = $this->getDateStart()->getLocalized($this->translator->translate('CoreHome_LongMonthFormat')); return $out; } /** * Returns the current period as a string * * @return string */ public function getPrettyString() { $out = $this->getDateStart()->toString('Y-m'); return $out; } /** * Generates the subperiods (one for each day in the month) */ protected function generate() { if ($this->subperiodsProcessed) { return; } parent::generate(); $date = $this->date; $startMonth = $date->setDay(1); $currentDay = clone $startMonth; while ($currentDay->compareMonth($startMonth) == 0) { $this->addSubperiod(new Day($currentDay)); $currentDay = $currentDay->addDay(1); } } }