mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
Merge pull request #328 from silverstripe/add-hook-for-extension-filters-on-tag-blog-posts
Added hook for extension filters on tag blog posts
This commit is contained in:
commit
3ef14a6e1a
@ -42,6 +42,17 @@ class BlogTag extends DataObject implements CategorisationObject {
|
||||
'URLSegmentExtension',
|
||||
);
|
||||
|
||||
/**
|
||||
* @return DataList
|
||||
*/
|
||||
public function BlogPosts() {
|
||||
$blogPosts = parent::BlogPosts();
|
||||
|
||||
$this->extend("updateGetBlogPosts", $blogPosts);
|
||||
|
||||
return $blogPosts;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user