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

help in function in .ss


Go to End


2 Posts   1087 Views

Avatar
bebabeba

Community Member, 193 Posts

10 December 2009 at 3:24am

Hi!
show in my .ss file resul data of my query in this way.

<li>
<div class="nome_query">$Nome</div>
</li>

Near name I need a link that take an id. Thi id must go a new function in my Page.php..help..How can call function in my .ss file?

Avatar
Willr

Forum Moderator, 5523 Posts

10 December 2009 at 12:12pm

Calling functions from Page.php is easy. You just make a function say function MyTest { return "Hi"; } and then you can call it in your template like $MyTest