Making WordPress.org

Changeset 2887


Ignore:
Timestamp:
04/04/2016 06:45:27 PM (9 years ago)
Author:
iandunn
Message:

WordCamp Post Type: Add some comments and cleanup whitespace.

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  
    4949        require_once ( WCPT_DIR . 'applications/tracker.php' );
    5050        require_once ( WCPT_DIR . 'applications/wordcamp.php' );
     51        // todo review the full diff against trunk before merging
    5152
    5253        // Require admin files.
  • sites/branches/application-tracking/wordcamp.org/public_html/wp-content/plugins/wcpt/wcpt-wordcamp/wordcamp-loader.php

    r2882 r2887  
    131131            'wcpt-interview-sched' => _x( 'Interview/Orientation Scheduled',             'wordcamp status', 'wordcamporg' ),
    132132            'wcpt-rejected'        => _x( 'Rejected',                                    'wordcamp status', 'wordcamporg' ),
    133             'wcpt-cancelled'       => _x( 'Cancelled', 'wordcamp status', 'wordcamporg' ),
     133            'wcpt-cancelled'       => _x( 'Cancelled',                                   'wordcamp status', 'wordcamporg' ),
    134134            'wcpt-approved-pre-pl' => _x( 'Approved for Pre-Planning Pending Agreement', 'wordcamp status', 'wordcamporg' ),
    135135            'wcpt-needs-email'     => _x( 'Needs E-mail Address',                        'wordcamp status', 'wordcamporg' ),
     
    233233            'wcpt-needs-vetting'   => array( 'wcpt-needs-orientati', 'wcpt-more-info-reque', 'wcpt-needs-rejection' ),
    234234            '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
    236236            'wcpt-needs-rejection' => array( 'wcpt-needs-vetting', 'wcpt-rejected' ),
    237237            'wcpt-interview-sched' => array( 'wcpt-needs-orientati', 'wcpt-approved-pre-pl' ),
    238238            'wcpt-rejected'        => array( 'wcpt-needs-rejection' ),
    239             'wcpt-cancelled'       => array(),
     239            'wcpt-cancelled'       => array(),  // Allowed from any status, see below
    240240            'wcpt-approved-pre-pl' => array( 'wcpt-interview-sched', 'wcpt-needs-email' ),
    241241            'wcpt-needs-email'     => array( 'wcpt-approved-pre-pl', 'wcpt-needs-site' ),
Note: See TracChangeset for help on using the changeset viewer.