<?php
/*
Plugin Name: Imager - Amazing Image Tool for WordPress
Plugin URI: http://demo.ad-theme.com/plugin/imager/
Description: Create your custom image sizes and add amazing effects!
Author: Alessio Marzo
Version: 1.5
Author URI: http://www.ad-theme.com/
Compatibility: WP 3.6.x - 3.7.x - 3.8.x
*/

// Basic plugin definitions 
define ('IM_PLG_NAME', 'imager');
define( 'IM_PLG_VERSION', '1.5' );
define( 'IM_URL', WP_PLUGIN_URL . '/' . str_replace( basename(__FILE__), '', plugin_basename(__FILE__) ));
define( 'IM_DIR', WP_PLUGIN_DIR . '/' . str_replace( basename(__FILE__), '', plugin_basename(__FILE__) ));


// Plugin INIT
require_once(IM_DIR.'inc/install.php'); 