This commit is contained in:
Steve Boyd 2024-05-16 05:27:20 +00:00 committed by GitHub
commit 23f62eb707
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 5 additions and 5 deletions

View File

@ -110,7 +110,7 @@ class ContentReviewDefaultSettings extends DataExtension
/**
* @param FieldList $fields
*/
public function updateCMSFields(FieldList $fields)
protected function updateCMSFields(FieldList $fields)
{
$helpText = LiteralField::create(
'ContentReviewHelp',

View File

@ -15,7 +15,7 @@ class ContentReviewLeftAndMainExtension extends LeftAndMainExtension
*
* @param array &$clientConfig
*/
public function updateClientConfig(&$clientConfig)
protected function updateClientConfig(&$clientConfig)
{
$clientConfig['form']['ReviewContentForm'] = [
'schemaUrl' => $this->owner->Link('schema/ReviewContentForm')

View File

@ -23,7 +23,7 @@ class ContentReviewOwner extends DataExtension
"SiteTreeContentReview" => SiteTree::class,
];
public function updateCMSFields(FieldList $fields)
protected function updateCMSFields(FieldList $fields)
{
// Remove automatically scaffolded GridField in Member CMS fields
$fields->removeByName('SiteTreeContentReview');

View File

@ -161,7 +161,7 @@ class SiteTreeContentReview extends DataExtension implements PermissionProvider
/**
* @param FieldList $actions
*/
public function updateCMSActions(FieldList $actions)
protected function updateCMSActions(FieldList $actions)
{
if (!$this->canBeReviewedBy(Security::getCurrentUser())) {
return;
@ -326,7 +326,7 @@ class SiteTreeContentReview extends DataExtension implements PermissionProvider
/**
* @param FieldList $fields
*/
public function updateSettingsFields(FieldList $fields)
protected function updateSettingsFields(FieldList $fields)
{
if ($this->owner->hasMethod('displayContentReview') && !$this->owner->displayContentReview()) {
return;