I need to add the DropDownField to the searchform which shows only the pages from the top level. Even I want to restrict the pages from the toplevel to list only specific pages.
How to do that? I did not get useful links or document .Please help
function SearchForm() {
$searchText = isset($_REQUEST['Search']) ? $_REQUEST['Search'] : 'Search';
$fields = new FieldSet(
new TextField("Search", "", $searchText)
new DropdownField("PageID", "", Dataobject::get("ContentPage")->map("ID", "Title", "Please Select"))
);
$actions = new FieldSet(
new FormAction('results', 'Search')
);
return new SearchForm($this->owner, "SearchForm", $fields, $actions);
}