Changeset 5512
- Timestamp:
- 05/24/2017 10:50:47 PM (6 years ago)
- Location:
- sites/trunk/wordcamp.org/public_html/wp-content/plugins
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wcpt/wcpt-wordcamp/wordcamp-admin.php
r5421 r5512 745 745 } 746 746 747 if ( $old_status == 'wcpt-pre-planning' && $new_status == 'wcpt-pre-planning' ) { 748 // todo - bug: this won't ever run b/c of the early return above. 749 // what commit made this mistake, and why? 750 // what things are tied to this that haven't been running? 751 do_action( 'wcpt_added_to_planning_schedule', $post ); 747 if ( 'wcpt-pre-planning' == $new_status ) { 748 do_action( 'wcpt_approved_for_pre_planning', $post ); 752 749 } elseif ( $old_status == 'wcpt-needs-schedule' && $new_status == 'wcpt-scheduled' ) { 753 750 do_action( 'wcpt_added_to_final_schedule', $post ); -
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-organizer-reminders/wcor-mailer.php
r5356 r5512 13 13 public function __construct() { 14 14 $this->triggers = array( 15 'wcor_approved_for_pre_planning' => array( 16 'name' => 'WordCamp approved for pre-planning', 17 'actions' => array( 18 array( 19 'name' => 'wcpt_approved_for_pre_planning', 20 'callback' => 'send_trigger_approved_for_pre_planning', 21 'priority' => 10, 22 'parameters' => 1, 23 ), 24 ), 25 ), 26 15 27 'wcor_added_to_pending_schedule' => array( 16 28 'name' => 'WordCamp added to pending schedule', … … 629 641 630 642 /** 643 * Sends e-mails hooked to the wcor_approved_for_pre_planning trigger. 644 * 645 * This fires when a WordCamp has been approved for pre-planning. 646 * 647 * @param WP_Post $wordcamp 648 */ 649 public function send_trigger_approved_for_pre_planning( $wordcamp ) { 650 $this->send_triggered_emails( $wordcamp, 'wcor_approved_for_pre_planning' ); 651 } 652 653 /** 631 654 * Sends e-mails hooked to the wcor_added_to_pending_schedule trigger. 632 655 *
Note: See TracChangeset
for help on using the changeset viewer.