# simple-urls/0.9.9/plugin.php

Lasso Lite – Affiliate Link Manager &amp; Product Displays, version 0.9.9. 34 lines.

- Page: https://pluginprobe.com/plugins/simple-urls/0.9.9/code/plugin.php
- Raw: https://pluginprobe.com/plugins/simple-urls/0.9.9/raw/plugin.php
- Modified: 2019-06-26T13:11:40+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/simple-urls/0.9.9/code/plugin.php#L10-L20`.

```php
<?php
/**
 * Plugin Name: Simple URLs
 * Plugin URI: https://wordpress.org/plugins/simple-urls/
 * 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.
 * Author: Nathan Rice
 * Author URI: http://www.nathanrice.net/
 * Version: 0.9.9

 * Text Domain: simple-urls
 * Domain Path: /languages

 * License: GNU General Public License v2.0 (or later)
 * License URI: http://www.opensource.org/licenses/gpl-license.php
 *
 * @package simple-urls
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

define( 'SIMPLE_URLS_DIR', plugin_dir_path( __FILE__ ) );
define( 'SIMPLE_URLS_URL', plugins_url( '', __FILE__ ) );

require_once SIMPLE_URLS_DIR . '/includes/class-simple-urls.php';

new Simple_Urls();

if ( is_admin() ) {
	require_once SIMPLE_URLS_DIR . '/includes/class-simple-urls-admin.php';
	new Simple_Urls_Admin();
}

```
