<?xml version="1.0"?> <!DOCTYPE module SYSTEM "../../lib/module.dtd"> <module name="calendar" version="1.0.0"> <requires module="CORE" version="0.1" inequality="greater" /> <description> The calendar module allows churches to track events while allowing memebers to view given events </description> <dbschema> <table name="calendar"> <field dbname="id" nodisp="nodisp" /> <field dbname="title" dispname="Title" desc="Title of event" /> <field dbname="start_time" dispname="Starting Time" desc="Time the event starts" /> <field dbname="end_time" dispname="Ending Time" desc="Time the event ends" /> <field dbname="location" dispname="Location" desc="Location of event, such as Northex or Kitchen" /> <field dbname="description" dispname="Description" desc="Additional information that may need to be provided" /> </table> </dbschema> <home_include href="home.inc.php" possition="main" /> </module>