Skip to content

Instantly share code, notes, and snippets.

@hubertusanton
Last active December 19, 2015 04:58
Show Gist options
  • Save hubertusanton/5900547 to your computer and use it in GitHub Desktop.
Save hubertusanton/5900547 to your computer and use it in GitHub Desktop.
Silverstripe 3.1 nice internal / external link field
<?php
// nice internal / external link field
$fields->replaceField('LinkExteralOrInternal', (SelectionGroup::create(
"LinkExteralOrInternal",
array(
SelectionGroup_Item::create(
"external",
TextField::create(
"ExternalLink",
"Externe link"
),
'Externe link'
),
SelectionGroup_Item::create(
'internal',
TreeDropdownField::create(
"InternalLinkID",
"",
'SiteTree',
'ID',
'TreeTitle'
),
'Interne link'
)
)
)
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment