mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
API Set extension hook implementation visibility to protected
This commit is contained in:
parent
72422f1d2c
commit
6adf5893c9
@ -90,7 +90,7 @@ class BlogFilter extends Lumberjack
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function updateCMSFields(FieldList $fields)
|
||||
protected function updateCMSFields(FieldList $fields)
|
||||
{
|
||||
$excluded = $this->owner->getExcludedSiteTreeClassNames();
|
||||
|
||||
|
@ -54,7 +54,7 @@ class BlogMemberExtension extends DataExtension
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function onBeforeWrite()
|
||||
protected function onBeforeWrite()
|
||||
{
|
||||
$count = 1;
|
||||
|
||||
@ -108,7 +108,7 @@ class BlogMemberExtension extends DataExtension
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function updateCMSFields(FieldList $fields)
|
||||
protected function updateCMSFields(FieldList $fields)
|
||||
{
|
||||
$fields->removeByName('URLSegment');
|
||||
|
||||
|
@ -491,7 +491,7 @@ class BlogPost extends Page
|
||||
*
|
||||
* Update the PublishDate to now if the BlogPost would otherwise be published without a date.
|
||||
*/
|
||||
public function onBeforePublish()
|
||||
protected function onBeforePublish()
|
||||
{
|
||||
/**
|
||||
* @var DBDatetime $publishDate
|
||||
@ -509,7 +509,7 @@ class BlogPost extends Page
|
||||
*
|
||||
* Sets blog relationship on all categories and tags assigned to this post.
|
||||
*/
|
||||
public function onAfterWrite()
|
||||
protected function onAfterWrite()
|
||||
{
|
||||
parent::onAfterWrite();
|
||||
|
||||
|
@ -23,7 +23,7 @@ class BlogPostFeaturedExtension extends DataExtension
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function updateCMSFields(FieldList $fields)
|
||||
protected function updateCMSFields(FieldList $fields)
|
||||
{
|
||||
// Add the checkbox in.
|
||||
$fields->addFieldToTab(
|
||||
|
@ -27,7 +27,7 @@ class BlogPostFilter extends DataExtension
|
||||
* @param SQLSelect $query
|
||||
* @param DataQuery $query
|
||||
*/
|
||||
public function augmentSQL(SQLSelect $query, DataQuery $dataQuery = null)
|
||||
protected function augmentSQL(SQLSelect $query, DataQuery $dataQuery = null)
|
||||
{
|
||||
|
||||
if (Controller::has_curr() && Controller::curr() instanceof LeftAndMain) {
|
||||
@ -60,7 +60,7 @@ class BlogPostFilter extends DataExtension
|
||||
* @param DataQuery $dataQuery
|
||||
* @param DataObject $dataObject
|
||||
*/
|
||||
public function augmentLoadLazyFields(SQLSelect &$query, DataQuery &$dataQuery = null, $dataObject)
|
||||
protected function augmentLoadLazyFields(SQLSelect &$query, DataQuery &$dataQuery = null, $dataObject)
|
||||
{
|
||||
$blogPostTable = DataObject::getSchema()->tableName(BlogPost::class);
|
||||
$dataQuery->innerJoin(
|
||||
|
Loading…
Reference in New Issue
Block a user