mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
FIX mysql >= 5.7 sql_mode=only_full_group_by error
This commit is contained in:
parent
e737cd818b
commit
0d6b44aa44
@ -84,52 +84,47 @@ class BlogArchiveWidget extends Widget
|
||||
/**
|
||||
* Returns a list of months where blog posts are present.
|
||||
*
|
||||
* @return DataList
|
||||
* @return ArrayList
|
||||
*/
|
||||
public function getArchive()
|
||||
{
|
||||
$query = $this->Blog()->getBlogPosts()->dataQuery();
|
||||
$format = ($this->ArchiveType == 'Yearly') ? '%Y' : '%Y-%m';
|
||||
$publishDate = DB::get_conn()->formattedDatetimeClause('"PublishDate"', $format);
|
||||
$fields = array(
|
||||
'PublishDate' => $publishDate,
|
||||
'Total' => "Count('PublishDate')"
|
||||
);
|
||||
|
||||
if ($this->ArchiveType == 'Yearly') {
|
||||
$query->groupBy('DATE_FORMAT("PublishDate", \'%Y\')');
|
||||
} else {
|
||||
$query->groupBy('DATE_FORMAT("PublishDate", \'%Y-%M\')');
|
||||
}
|
||||
$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()));
|
||||
|
||||
$posts = $this->Blog()->getBlogPosts()->setDataQuery($query);
|
||||
$posts = $query->execute();
|
||||
$result = new ArrayList();
|
||||
while ($next = $posts->next()) {
|
||||
$date = Date::create();
|
||||
$date->setValue(strtotime($next['PublishDate']));
|
||||
$year = $date->Format('Y');
|
||||
|
||||
if ($this->NumberToDisplay > 0) {
|
||||
$posts = $posts->limit($this->NumberToDisplay);
|
||||
}
|
||||
|
||||
$archive = new ArrayList();
|
||||
|
||||
if ($posts->count() > 0) {
|
||||
foreach ($posts as $post) {
|
||||
/**
|
||||
* @var BlogPost $post
|
||||
*/
|
||||
$date = Date::create();
|
||||
$date->setValue($post->PublishDate);
|
||||
|
||||
if ($this->ArchiveType == 'Yearly') {
|
||||
$year = $date->Format("Y");
|
||||
$month = null;
|
||||
$title = $year;
|
||||
} else {
|
||||
$year = $date->Format("Y");
|
||||
$month = $date->Format("m");
|
||||
$title = $date->FormatI18N("%B %Y");
|
||||
}
|
||||
|
||||
$archive->push(new ArrayData(array(
|
||||
'Title' => $title,
|
||||
'Link' => Controller::join_links($this->Blog()->Link('archive'), $year, $month)
|
||||
)));
|
||||
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)
|
||||
)));
|
||||
}
|
||||
|
||||
return $archive;
|
||||
$this->extend('updateGetArchive', $result);
|
||||
return $result;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user