Skip to content

Instantly share code, notes, and snippets.

@madmatt
Created January 9, 2019 00:22
Show Gist options
  • Save madmatt/6acd82ac4f464d7be9500fcc78815f63 to your computer and use it in GitHub Desktop.
Save madmatt/6acd82ac4f464d7be9500fcc78815f63 to your computer and use it in GitHub Desktop.
<?php
namespace App\Extensions;
use SilverStripe\ORM\DataExtension;
class BannerBlockExtension extends DataExtension
{
private static $db = [
'Subtitle' => 'Varchar(100)'
];
public function updateCMSFields(FieldList $fields)
{
$fields->insertAfter('Title', new TextField('Subtitle'));
}
}
SilverStripe\ElementalBannerBlock\Block\BannerBlock:
extensions:
- App\Extensions\BannerBlockExtension
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment