<?php

/*
	Plugin Name: Category/Tag Email Notification
	Plugin URI: https://github.com/amiyasahu/q2a-email-notification
	Plugin Description: Notifies a user when a new question is asked in his favorite tag or category 
	Plugin Version: 1.2
	Plugin Date: 2014-09-15
	Plugin Author: Amiya Sahu
	Plugin Author URI: http://amiyasahu.com
	Plugin License: MIT License
	Plugin Minimum Question2Answer Version: 1.6
	Plugin Update Check URI: https://raw.githubusercontent.com/amiyasahu/q2a-email-notification/master/qa-plugin.php
*/

if (!defined('QA_VERSION')) { // don't allow this page to be requested directly from browser
	header('Location: ../../');
	exit;
}

qa_register_plugin_module('event', 'qa-email-notifications-event.php', 'qa_email_notifications_event', 'Category/Tag Email Notifications');
qa_register_plugin_phrases('language/qa-email-notification-lang-*.php', 'notify');

/*
        Omit PHP closing tag to help avoid accidental output
*/