Skip to content

Instantly share code, notes, and snippets.

@muskie9
Created May 9, 2018 15:01
Show Gist options
  • Save muskie9/d5ee635abf631e8821ae45fb121e416e to your computer and use it in GitHub Desktop.
Save muskie9/d5ee635abf631e8821ae45fb121e416e to your computer and use it in GitHub Desktop.
<?php
/**
* Class FileDataExtension
*/
class FileDataExtension extends DataExtension
{
/**
* @param FieldList $fields
*/
public function updateCMSFields(FieldList $fields)
{
if (Permission::check('ADMIN')) {
$fields->push(CheckboxField::create('ShowInSearch')->setTitle('Show In Search'));
}
}
/**
*
*/
public function onBeforeWrite()
{
parent::onBeforeWrite();
$this->owner->ShowInSearch = false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment