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.

General Questions /

General questions about getting started with SilverStripe that don't fit in any of the categories above.

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

Function doesn't give an output


Go to End


10 Posts   2473 Views

Avatar
tdmarko

Community Member, 4 Posts

23 March 2011 at 9:55pm

No it's not. It's a single standing control surrounded by html :)

Avatar
martimiz

Forum Moderator, 1391 Posts

23 March 2011 at 10:27pm

Edited: 23/03/2011 10:28pm

I didn't delve into the complexity of your calculations, but based on the bits of code you provided I can only say that it will not work :-)

Since I don't know how far you've gotten into SilverStripe, at this point I can only give a few tips, that you might already be familiar with. For a function outcome to be rendered using a template, the function should either return a single value or a DataObjectSet, in which case you can use a control structure in the template to render the set.

Seems like your function creates a couple of arrays and I don't know how you were planning on feeding them to the template...

Go to Top