PluginProbe
UpStream: a Project Management Plugin for WordPress / trunk
UpStream: a Project Management Plugin for WordPress vtrunk
trunk 1.39.0 1.39.1 1.39.2 1.39.3 2.0.7 2.1.0
upstream / includes.php

includes.php in UpStream: a Project Management Plugin for WordPress trunk, at includes.php

26 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Defining the UpStream version, and also any addon's version that working with this this release.
4 *
5 * @package UpStream
6 */
7
8 define( 'UPSTREAM_VERSION', '2.1.1' );
9
10 global $upstream_addon_requirements;
11 $upstream_addon_requirements = array(
12 array( 'Upstream-Advanced-Permissions/upstream-advanced-permissions.php', '2.0.7' ),
13 array( 'UpStream-API/upstream-api.php', '2.0.7' ),
14 array( 'UpStream-Calendar-View/upstream-calendar-view.php', '2.0.7' ),
15 array( 'UpStream-Copy-Project/upstream-copy-project.php', '2.0.7' ),
16 array( 'UpStream-Custom-Fields/upstream-custom-fields.php', '2.0.7' ),
17 array( 'UpStream-Customizer/upstream-customizer.php', '2.0.7' ),
18 array( 'UpStream-Email-Notifications/upstream-email-notifications.php', '2.0.7' ),
19 array( 'UpStream-Forms/upstream-forms.php', '2.0.7' ),
20 array( 'UpStream-Frontend-Edit/upstream-frontend-edit.php', '2.0.7' ),
21 array( 'UpStream-Name-Replacement/upstream-name-replacement.php', '2.0.7' ),
22 array( 'UpStream-Project-Timeline/upstream-project-timeline.php', '2.0.7' ),
23 array( 'UpStream-Reporting/upstream-reporting.php', '2.0.7' ),
24 array( 'UpStream-Time-Tracking/upstream-time-tracking.php', '2.0.7' ),
25 );
26