Skip to content

Instantly share code, notes, and snippets.

@dljoseph
Created November 22, 2014 06:59
Show Gist options
  • Save dljoseph/97703575aef9a102ce4e to your computer and use it in GitHub Desktop.
Save dljoseph/97703575aef9a102ce4e to your computer and use it in GitHub Desktop.
SilverStripe SiteConfig TabSet
$set = new TabSet(
'test tab set',
new Tab(
'tab a',
TextField::create('TabAContent')
),
new Tab(
'tab b',
TextField::create('TabABontent')
)
);
$fields->addFieldToTab('Root', $set);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment