Take next 5 items from Calendar to create list of events

Talk about writing modules and plugins for CMS Made Simple, or about specific core functionality. This board is for PHP programmers that are contributing to CMSMS not for site developers
Post Reply
Eloni

Take next 5 items from Calendar to create list of events

Post by Eloni »

I don't have version numbers yet because I am just getting into CMSMS.  Calendaring seems simple, but I want to dynamically take the next 5 events from the calendar, and create a list of events on the homepage.  Does a module exist to do this, or will I need to write one myself?  Cheers!
irish
Forum Members
Forum Members
Posts: 101
Joined: Tue Jun 03, 2008 2:31 pm

Re: Take next 5 items from Calendar to create list of events

Post by irish »

I don't know this module, but it sounds like you would just need to write a small piece of code on the action.default.php page, and then pass a parameter to activate it.

Home Page:
i.e. {cms_module module="CalendarMadeSimple" show="next5"}

action.default.php page:

Code: Select all

if(isset($params["show"]) && $params["show"]=='next5'){
   code here to display next five....
}

Post Reply

Return to “Developers Discussion”