PluginProbe
Lasso Lite – Affiliate Link Manager & Product Displays / 104
Lasso Lite – Affiliate Link Manager & Product Displays v104
157 155 156 154 153 152 151 150 149 148 trunk 0.9.9 104 105 106 107 108 109 110 111 112 113 114 115 116 All 56 releases
simple-urls / plugin.php

plugin.php in Lasso Lite – Affiliate Link Manager & Product Displays 104, at plugin.php

34 lines 979 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: Simple URLs
4 * Plugin URI: https://getlasso.co/?utm_source=SimpleURLs&utm_campaign=WP
5 * Description: Simple URLs is a complete URL management system that allows you create, manage, and track outbound links from your site by using custom post types and 301 redirects.
6 * Author: Lasso
7 * Author URI: https://getlasso.co/?utm_source=SimpleURLs&utm_campaign=WP
8 * Version: 104
9
10 * Text Domain: simple-urls
11 * Domain Path: /languages
12
13 * License: GNU General Public License v2.0 (or later)
14 * License URI: http://www.opensource.org/licenses/gpl-license.php
15 *
16 * @package simple-urls
17 */
18
19 if ( ! defined( 'ABSPATH' ) ) {
20 exit;
21 }
22
23 define( 'SIMPLE_URLS_DIR', plugin_dir_path( __FILE__ ) );
24 define( 'SIMPLE_URLS_URL', plugins_url( '', __FILE__ ) );
25
26 require_once SIMPLE_URLS_DIR . '/includes/class-simple-urls.php';
27
28 new Simple_Urls();
29
30 if ( is_admin() ) {
31 require_once SIMPLE_URLS_DIR . '/includes/class-simple-urls-admin.php';
32 new Simple_Urls_Admin();
33 }
34