Skip to content

Instantly share code, notes, and snippets.

@sminnee
Created June 18, 2015 13:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save sminnee/a7b57cd5888ac8cdf306 to your computer and use it in GitHub Desktop.
Save sminnee/a7b57cd5888ac8cdf306 to your computer and use it in GitHub Desktop.
Dropdown Field
<?php
$blob = new DropdownField(
'EmployeeOfTheMonthID',
'Employee of the month',
$this
->Children()
->filter('ClassName', 'StaffPage')
->sort('Title')
->map('ID', 'Title')
);
$blob->setEmptyString('(Select)');
$fields->addFieldToTab(
'Root.Main',
$blob,
'Content'
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment