Making WordPress.org


Ignore:
Timestamp:
01/25/2019 03:51:59 AM (6 years ago)
Author:
iandunn
Message:

WordCamp Payments: Prevent sending invoices before contract is signed.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordcamp.org/public_html/wp-content/plugins/wcpt/wcpt-wordcamp/wordcamp-loader.php

    r8139 r8141  
    251251
    252252    /**
     253     * Get all the status that occur after a camp has a signed contract.
     254     *
     255     * @return array
     256     */
     257    public static function get_after_contract_statuses() {
     258        return array(
     259            'wcpt-needs-fill-list',
     260            'wcpt-needs-schedule',
     261            'wcpt-scheduled',
     262            'wcpt-closed',
     263        );
     264    }
     265
     266    /**
    253267     * Get the milestones that correspond to each status
    254268     *
Note: See TracChangeset for help on using the changeset viewer.