This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<cfscript> | |
public any function getLocalFeeds() { | |
return variables.$.getBean('feedManager').getFeeds(siteid=variables.$.event('siteid'), type='local'); | |
} | |
public any function getLocalFeedNames() { | |
var rs = getLocalFeeds(); | |
return rs.getRecordcount() | |
? ValueList(rs.name, '^') | |
: 'No Content Collections Exist!'; |