7921 Posts in 1359 Topics by 933 members
DataObjectManager Module
SilverStripe Forums » DataObjectManager Module » How can I add stuff to the image class and show in popup?
Discuss the DataObjectManager module, and the related ImageGallery module.
Moderators: martimiz, UncleCheese, Howard, Sean, Ryan M., biapar, Willr, Ingo, swaiba, simon_w
| Go to End | ||
| Author | Topic: | 1289 Views |
-
Re: How can I add stuff to the image class and show in popup?

26 August 2009 at 2:01am
Great thanks, that did the job with the SimpleTreeDropdownField. Brilliant!
Regarding the last thing, I've done this to remove the extended options from folders and it works:
public function updateCMSFields(FieldSet &$fields) {
if ($this->ClassName == "image")
{
$fields->push(new DropdownField('Kategori','Kategori', singleton('File')->dbObject('Kategori')->enumValues()));
$fields->push(new SimpleTreeDropdownField('SiteLinkID','Vælge en side (hvis kategorien er et link)'));
$fields->push(new FileIFrameField('BilledeThumb'));
}
return $fields;
}Would you consider this good practise or is there a smarter way?
| 1289 Views | ||
| Go to Top |

