We Provide progressive business solutions

Researchg

Web Content Management Systems
A universal interface to connect to and manage any content management system.

solutions

Consolidating Control Panel Interfaces
Designing one interface to connect through the APIs of disparate content management systems

Results

Extending Core Applications
Every CMS has it's own way of doing things. A place to organize the different ways to do things in different types of content management systems.

Navigation

Login

Getting ready

You will need the getResources Package for this task.

How to do it...

  1. Create the parts you will need in your Manager
    1. Create a blank template to use
    1. Create a document and set the content type to xml
  1. Create a snippet titled getTime and use the following code.
return strftime($scriptProperties['format']);
3.       Paste the code containing xml nodes, template variables, and snippet calls, example code.

    

How it works...

This recipe is courtesy of Gary Nutting, a MODx Core developer. This demonstrates how simple it is to generate RSS feeds in Revolution.

<rss version="2.0">

<channel>

<title>Generating Custom RSS Feeds</title>

<link>http://brianyang.us/</link>

<description></description>

<lastBuildDate></lastBuildDate>

<language>en-us</language>

</channel>

</rss>

There's more...

Using this convention we can quickly and easily generate and maintain lists of feeds for our users to syndicate our content.