Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

DataObjectManager Module /

Discuss the DataObjectManager module, and the related ImageGallery module.

Moderators: martimiz, UncleCheese, Sean, Ed, biapar, Willr, Ingo, swaiba

FileDataObjectManager $fieldlist question


Go to End


2 Posts   959 Views

Avatar
micahsheets

Community Member, 165 Posts

20 January 2011 at 5:56pm

I was wondering how to get the Filename of the attached file. My DataObject Video with $has_one = array('Attachment' => 'FLV').

On my ManyManyFileDataObjectManager I have

$filelist = array('Name' => 'Name')

but that doesn't work because Video doesn't have a Name Column in the database. I thought that putting a function on Video like this

function Name() {return $this->Attachment()->Name;} would do it but it doesn't

Avatar
UncleCheese

Forum Moderator, 4102 Posts

20 January 2011 at 6:12pm

Hi, Micah! Welcome back!

Change the name of the function to "getName()", and that should do it.