upstream.php in UpStream: a Project Management Plugin for WordPress trunk, at upstream.php
| 1 | <?php |
| 2 | /** |
| 3 | * Plugin Name: UpStream |
| 4 | * Description: A Project Management Plugin for WordPress |
| 5 | * Author: UpStream |
| 6 | * Author URI: https://upstreamplugin.com |
| 7 | * Version: 2.1.1 |
| 8 | * Text Domain: upstream |
| 9 | * Domain Path: /languages |
| 10 | * |
| 11 | * @package UpStream |
| 12 | */ |
| 13 | |
| 14 | if ( ! defined( 'ABSPATH' ) ) { |
| 15 | exit; |
| 16 | } |
| 17 | |
| 18 | define( 'UPSTREAM_PLUGIN_FILE', __FILE__ ); |
| 19 | |
| 20 | require_once 'class-upstream.php'; |
| 21 |