# upstream/2.1.0/upstream.php

UpStream: a Project Management Plugin for WordPress, version 2.1.0. 21 lines.

- Page: https://pluginprobe.com/plugins/upstream/2.1.0/code/upstream.php
- Raw: https://pluginprobe.com/plugins/upstream/2.1.0/raw/upstream.php
- Modified: 2024-05-22T12:40:54+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/upstream/2.1.0/code/upstream.php#L10-L20`.

```php
<?php
/**
 * Plugin Name: UpStream
 * Description: A Project Management Plugin for WordPress
 * Author: UpStream
 * Author URI: https://upstreamplugin.com
 * Version: 2.1.0
 * Text Domain: upstream
 * Domain Path: /languages
 *
 * @package UpStream
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

define( 'UPSTREAM_PLUGIN_FILE', __FILE__ );

require_once 'class-upstream.php';

```
