Remote Content Feeds like Mura CMS has

Hi does ContentBox have anything similar to the Mura CMS Content Feeds?

If not is there a module yet?

If still not, is this something someone would be interested in if I started to build it as part of the http://cfml-craftsmanship.com projects?

Thanks!

I see the docs for content feeds, but I’m a little hazy on the use case. Can you expound a bit for us?

ContentBox exposes its content via our content services. For instance, on a recent client project, I needed to build a custom page (inside a handler inside a module) that displayed certain content under a specific parent with filtering and sorting. I used this service code:

property name=“pageService” inject=“id:pageService@cb”;

// Get latests excerpts
var results = pageService.search(
search=rc.keyword,
isPublished = true,
creator=rc.authorID,
parent = contentIDArticles,
category=rc.categoryID,
max=prc.paging.maxRow,
offset=prc.paging.startRow-1,
sortOrder="#rc.sortColumn# #rc.sortDirection#",
searchActiveContent=true);

If your looking for something more turn-key, that can be easily wrapped in a widget that can be added via the CKEditor GUI. For instance, Luis just created a Widget this week that outputs links to all child pages of a given parent.

Thanks!

~Brad

ColdBox Platform Evangelist
Ortus Solutions, Corp

E-mail: brad@coldbox.org
ColdBox Platform: http://www.coldbox.org
Blog: http://www.codersrevolution.com

What do you mean by content feeds? Turn an RSS feed into content? If so, then yes. We have a rss widget for that