Event Calendar for OpenCart 1.5
=========================================

Event Calendar is an extension module for OpenCart 1.5 which is useful to show events to your cart users
Admin can add/edit/delete events and its details, that will be visible in front end in Calendar.

User can subscribe to event via form.

Features
---------
1) Installable Module.
2) Easy Installation.
3) Easy to use.
4) User Subscriber Option in front end
5) Event wise Export subscribers in admin
6) Restrict No of subscribers for any event
7) Can add image to event


Installation
============

Back Up!! Back Up!! Back Up!! 

1) Extract zip and upload all file from upload directory,

2) Open upload\admin\controller\common\header.php

After
	$this->data['text_zone'] = $this->language->get('text_zone');

Add 
	### Event Calendar - Start ###
	$this->data['text_event'] = $this->language->get('text_event');
	### Event Calendar - End ###

After
	$this->data['zone'] = $this->url->link('localisation/zone', 'token=' . $this->session->data['token'], 'SSL');
	
Add
	### Event Calendar - Start ###
	$this->data['event'] =  $this->url->link('catalog/event&token=' . $this->session->data['token'], 'SSL');
	### Event Calendar - End ###	

3) Open upload\admin\language\english\common\header.php

before '?>'

Add 
	### Event Calendar - Start ###
	$_['text_event']              = 'Events';
	### Event Calendar - End ##

4) Open upload\admin\view\template\common\header.tpl

After
	<li><a href="<?php echo $information; ?>"><?php echo $text_information; ?></a></li>
	
Add
	<!--Event Calendar - Start--> 
	<li><a href="<?php echo $event; ?>"><?php echo $text_event; ?></a></li>
	<!--Event Calendar - End-->	

4) Go to Modules > Events, Enable module

5) Go to System > Users > User Group, click on edit besides Top Administrator, select all unselected entries and press save button.

6) Go to Catalog > Events to add/edit/delete Events

That's it! You Done!


Upgrade Information
========================

10/10/2011 
If you are upgrading your module need to run below query to your database(add table name prefix if any)

ALTER TABLE  `event` ADD  `image` VARCHAR( 250 ) NULL


12/09/2011
If you are upgrading your module need to run below query to your database(add table name prefix if any)

ALTER TABLE  `event` ADD  `product_related` TEXT NULL


Further help and support
========================
For support use opencart's comment post.

Copyright
========================
Copyright(c) opencartdeveloper