Setup some defines
authorSteve Sutton <steve@gaslightmedia.com>
Thu, 20 Aug 2015 13:47:34 +0000 (09:47 -0400)
committerSteve Sutton <steve@gaslightmedia.com>
Thu, 20 Aug 2015 13:47:34 +0000 (09:47 -0400)
For the post type and taxonomies and db version

index.php

index e69de29..45a0e55 100644 (file)
--- a/index.php
+++ b/index.php
@@ -0,0 +1,19 @@
+<?php
+/**
+ * Plugin Name: Gaslight Media Coupons
+ * Description: Coupon Application for Gaslight Media Clients.
+ * Version: 0.0.1 Beta
+ * Author: Steve Sutton
+ * Author URI: http://www.gaslightmedia.com
+ * License: All right reserved
+ */
+
+defined('ABSPATH') or die();
+/**
+ * Defines for the plugin
+ */
+define('GLM_COUPON_PLUGIN_PATH_FILE', __FILE__);
+define('GLM_COUPON_VERSION', '0.0.1');
+define('GLM_COUPON_VERSION_OPTION_NAME', 'glm_coupons_db_version');
+define('GLM_COUPON_POST_TYPE', 'glm_coupons');
+define('GLM_COUPON_TAX_CATEGORIES', 'glm_couponscategory');