Changeset 2887
- Timestamp:
- 04/04/2016 06:45:27 PM (9 years ago)
- Location:
- sites/branches/application-tracking/wordcamp.org/public_html/wp-content/plugins/wcpt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/branches/application-tracking/wordcamp.org/public_html/wp-content/plugins/wcpt/wcpt-loader.php
r2877 r2887 49 49 require_once ( WCPT_DIR . 'applications/tracker.php' ); 50 50 require_once ( WCPT_DIR . 'applications/wordcamp.php' ); 51 // todo review the full diff against trunk before merging 51 52 52 53 // Require admin files. -
sites/branches/application-tracking/wordcamp.org/public_html/wp-content/plugins/wcpt/wcpt-wordcamp/wordcamp-loader.php
r2882 r2887 131 131 'wcpt-interview-sched' => _x( 'Interview/Orientation Scheduled', 'wordcamp status', 'wordcamporg' ), 132 132 'wcpt-rejected' => _x( 'Rejected', 'wordcamp status', 'wordcamporg' ), 133 'wcpt-cancelled' => _x( 'Cancelled', 'wordcamp status', 'wordcamporg' ),133 'wcpt-cancelled' => _x( 'Cancelled', 'wordcamp status', 'wordcamporg' ), 134 134 'wcpt-approved-pre-pl' => _x( 'Approved for Pre-Planning Pending Agreement', 'wordcamp status', 'wordcamporg' ), 135 135 'wcpt-needs-email' => _x( 'Needs E-mail Address', 'wordcamp status', 'wordcamporg' ), … … 233 233 'wcpt-needs-vetting' => array( 'wcpt-needs-orientati', 'wcpt-more-info-reque', 'wcpt-needs-rejection' ), 234 234 'wcpt-needs-orientati' => array( 'wcpt-needs-vetting', 'wcpt-interview-sched' ), 235 'wcpt-more-info-reque' => array(), 235 'wcpt-more-info-reque' => array(), // Allowed from any status, see below 236 236 'wcpt-needs-rejection' => array( 'wcpt-needs-vetting', 'wcpt-rejected' ), 237 237 'wcpt-interview-sched' => array( 'wcpt-needs-orientati', 'wcpt-approved-pre-pl' ), 238 238 'wcpt-rejected' => array( 'wcpt-needs-rejection' ), 239 'wcpt-cancelled' => array(), 239 'wcpt-cancelled' => array(), // Allowed from any status, see below 240 240 'wcpt-approved-pre-pl' => array( 'wcpt-interview-sched', 'wcpt-needs-email' ), 241 241 'wcpt-needs-email' => array( 'wcpt-approved-pre-pl', 'wcpt-needs-site' ),
Note: See TracChangeset
for help on using the changeset viewer.