'Int', 'ArchiveType' => 'Enum(\'Monthly,Yearly\', \'Monthly\')', ); /** * @var array */ private static $defaults = array( 'NumberOfMonths' => 12, ); /** * @var array */ private static $has_one = array( 'Blog' => 'Blog', ); /** * {@inheritdoc} */ public function getCMSFields() { $self =& $this; $this->beforeUpdateCMSFields(function ($fields) use ($self) { /** * @var Enum $archiveType */ $archiveType = $self->dbObject('ArchiveType'); $type = $archiveType->enumValues(); foreach ($type as $k => $v) { $type[$k] = _t('BlogArchiveWidget.' . ucfirst(strtolower($v)), $v); } /** * @var FieldList $fields */ $fields->merge(array( DropdownField::create('BlogID', _t('BlogArchiveWidget.Blog', 'Blog'), Blog::get()->map()), DropdownField::create('ArchiveType', _t('BlogArchiveWidget.ArchiveType', 'ArchiveType'), $type), NumericField::create('NumberToDisplay', _t('BlogArchiveWidget.NumberToDisplay', 'No. to Display')) )); }); return parent::getCMSFields(); } /** * Returns a list of months where blog posts are present. * * @return ArrayList */ public function getArchive() { $format = ($this->ArchiveType == 'Yearly') ? '%Y' : '%Y-%m'; $publishDate = DB::get_conn()->formattedDatetimeClause('"PublishDate"', $format); $fields = array( 'PublishDate' => $publishDate, 'Total' => "Count('PublishDate')" ); $stage = Versioned::current_stage(); $suffix = ($stage == 'Stage') ? '' : "_{$stage}"; $query = SQLSelect::create($fields, "BlogPost{$suffix}") ->addGroupBy($publishDate) ->addOrderBy('PublishDate Desc') ->addWhere(array('PublishDate < ?' => SS_Datetime::now()->Format('Y-m-d'))); $posts = $query->execute(); $result = new ArrayList(); while ($next = $posts->next()) { $date = Date::create(); $date->setValue(strtotime($next['PublishDate'])); $year = $date->Format('Y'); if ($this->ArchiveType == 'Yearly') { $month = null; $title = $year; } else { $month = $date->Format('m'); $title = $date->FormatI18N('%B %Y'); } $result->push(new ArrayData(array( 'Title' => $title, 'Link' => Controller::join_links($this->Blog()->Link('archive'), $year, $month) ))); } $this->extend('updateGetArchive', $result); return $result; } } class BlogArchiveWidget_Controller extends Widget_Controller { }