I have been following @bernhard's great tutorial on creating a Dashboard and everything has very easy to understand so far. However, I need to add a select field that a template is using (so users can create a new page from the dashboard), but I am really at a complete lost on how to achieve this. I have been googling, but can't really find anything on the matter.
$field = $this->modules->get('InputfieldSelect');
$field->name = "Select Manufacturer";
$field->findPagesSelector = "template=basic-page"; //not needed for select field
$field->labelFieldName = "title";
$field->name = "Manufacturer Select";
$field->columnWidth = 34;
$fieldset->add($field);
I have the above code, which was originally an InputfieldPage, but since this is an options field, I have changed it. Has anyone actually gotten a select from a template (and its' values) in a module?