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.

Archive /

Our old forums are still available as a read-only archive.

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

Showing only flagged content


Go to End


2 Posts   1368 Views

Avatar
Teng

Community Member, 11 Posts

24 September 2008 at 5:28pm

I'm building off the tutorial, and have added a flag system to the articles in article pages. This works with a simple dropdown box is either flagged or not flagged. Now on the Article Holder page i only want to show articles that are not flagged. Would I do this similar to how latest news is shown on the homepage?

Avatar
Liam

Community Member, 470 Posts

25 September 2008 at 3:09am

Yup, something similar to the below function

function showNonFlagged() {
  return DataObject::get("Page", "flagged = no"); //change to suit how you set it up.
 }

Then use the custom control in your template to loop through them all.

<% control showNonFlagged %>
yada yada yada
<% end_control %>