| @@ -1,34 +1,37 @@ | ||
| 1 | -<?php | |
| 2 | -/** | |
| 3 | - * Plugin Name: Wp-Insert | |
| 4 | - * Plugin URI: https://wpinsert.smartlogix.co.in/ | |
| 5 | - * Description: WP-INSERT by SMARTLOGIX : The Ultimate Adsense / Ad-Management Plugin for WordPress | |
| 6 | - * Requires at least: 6.3 | |
| 7 | - * Requires PHP: 7.4 | |
| 8 | - * Version: 2.6.0 | |
| 9 | - * Author: namithjawahar | |
| 10 | - * Author URI: http://www.smartlogix.co.in/ | |
| 11 | - * License: GPLv2 or later | |
| 12 | - * License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html | |
| 13 | - * Text Domain: wp-insert | |
| 14 | - * | |
| 15 | - * @package wp-insert | |
| 16 | - */ | |
| 17 | - | |
| 18 | -/*Definitions*/ | |
| 19 | -if ( ! defined( 'WP_INSERT_URL' ) ) { | |
| 20 | - define( 'WP_INSERT_URL', plugin_dir_url( __FILE__ ) ); | |
| 21 | -} | |
| 22 | -if ( ! defined( 'WP_INSERT_DIR' ) ) { | |
| 23 | - define( 'WP_INSERT_DIR', plugin_dir_path( __FILE__ ) ); | |
| 24 | -} | |
| 25 | -if ( ! defined( 'WP_INSERT_VERSION' ) ) { | |
| 26 | - define( 'WP_INSERT_VERSION', '2.6.0' ); | |
| 27 | -} | |
| 28 | -if ( ! defined( 'WP_INSERT_DEBUG' ) ) { | |
| 29 | - define( 'WP_INSERT_DEBUG', false ); | |
| 30 | -} | |
| 31 | -/*Includes*/ | |
| 32 | - | |
| 33 | -require_once __DIR__ . '/includes/modules/core/modules.php'; | |
| 34 | -require_once __DIR__ . '/includes/modules/general/modules.php'; | |
| 1 | +<?php | |
| 2 | +/* | |
| 3 | +Plugin Name: wp-insert | |
| 4 | +Plugin URI: http://www.wp-insert.smartlogix.co.in/ | |
| 5 | +Description: The ultimate wordpress plugin | |
| 6 | +Version: 2.0 | |
| 7 | +Author: Namith Jawahar | |
| 8 | +Author URI: http://www.smartlogix.co.in/ | |
| 9 | +WP-INSERT by SMARTLOGIX : The ultimate wordpress plugin | |
| 10 | +*/ | |
| 11 | + | |
| 12 | +/* Copyright 2009 NAMITH JAWAHAR (website : http://www.smartlogix.co.in) | |
| 13 | + | |
| 14 | + This program is free software; you can redistribute it and/or modify | |
| 15 | + it under the terms of the GNU General Public License as published by | |
| 16 | + the Free Software Foundation; either version 2 of the License, or | |
| 17 | + (at your option) any later version. | |
| 18 | + | |
| 19 | + This program is distributed in the hope that it will be useful, | |
| 20 | + but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 21 | + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 22 | + GNU General Public License for more details. | |
| 23 | + | |
| 24 | + You should have received a copy of the GNU General Public License | |
| 25 | + along with this program; if not, write to the Free Software | |
| 26 | + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
| 27 | +*/ | |
| 28 | +/*Definitions*/ | |
| 29 | +if(!defined('WP_INSERT_URL')) | |
| 30 | + define('WP_INSERT_URL',WP_PLUGIN_URL.'/wp-insert'); | |
| 31 | +if(!defined('WP_INSERT_DIR')) | |
| 32 | + define('WP_INSERT_DIR',WP_PLUGIN_DIR.'/wp-insert'); | |
| 33 | +if(!defined('WP_INSERT_VERSION')) | |
| 34 | + define('WP_INSERT_VERSION', '2.0'); | |
| 35 | +/*Includes*/ | |
| 36 | +require_once (dirname(__FILE__).'/includes/includes.php'); | |
| 37 | +?> | |