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

Fun with menus


Go to End


14 Posts   2522 Views

Avatar
dhensby

Community Member, 253 Posts

11 September 2009 at 11:01pm

Yes, but this means if the user changes the Title... it breaks :(

Avatar
martimiz

Forum Moderator, 1391 Posts

11 September 2009 at 11:03pm

Edited: 11/09/2009 11:05pm

Refer to the id instead? Not so nice anymore... :-(

Avatar
Juanitou

Community Member, 323 Posts

12 September 2009 at 1:04am

Edited: 12/09/2009 1:06am

Hi!

Martimiz, I think you're wrong: 'if' structures accept the != operator. What they don't accept is apostrophes or spaces or non-ASCII characters, so:

<% if MenuTitle != 'My Headline' %>

Does not work, but:

<% if URLSegment != my-headline %>

should work.

Hope it helps,
Juan

Avatar
martimiz

Forum Moderator, 1391 Posts

12 September 2009 at 2:29am

@Juanitou
You're absolutely right - that was definitely mixed up - must have been the holydays. Sorry Pidgeon, I guess I'll go and hide for a while :-(

Avatar
Juanitou

Community Member, 323 Posts

12 September 2009 at 3:27am

Hey Martimiz, don't hide! Your contribution is useful.

If I know well this issue is because I'm using SS for multi-lingual sites. The actual 'if' parser is useless with Titles, MenuTitles and the such as long as it does not recognize spaces and special characters. Happily, with SS, it's easy to find workarounds.

Best regards,
Juan

Avatar
Junglefish

Community Member, 109 Posts

14 September 2009 at 9:45pm

Guys!

So many excellent suggestions, I can't thank you enough.

@Pigeon. Thanks for being so thorough with your explanation, it's helped my understanding of the SS framework a lot.

For anyone following this thread - I'm actually going to use the Martimez/Juanitou 'quick-n-dirty' solution (no offense intended). In my case I have a one-off requirement to move one item from the left-bar to the right-bar. So I think that hard-coding it is actually the 'safe' option in this case and it doesn't give the client any extra checkboxes to worry about. I've used <% if ID != 54 %> to identify the particular node, so the client can alter the page title if neccessary.

If the client's requirement changes in the future, I know I have the 'elegent' solution to fall back on.

Again, thanks all.

jf\

Go to Top