Changeset 8085 for sites/trunk/wordcamp.org/public_html/wp-content/plugins/wcpt/wcpt-meetup/class-meetup-application.php
- Timestamp:
- 01/16/2019 03:36:24 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wcpt/wcpt-meetup/class-meetup-application.php
r8083 r8085 81 81 * Enqueue scripts and stylesheets. 82 82 */ 83 function enqueue_assets() {83 public function enqueue_assets() { 84 84 global $post; 85 85 … … 162 162 */ 163 163 public function get_default_application_values() { 164 // WordCamp uses an ID with questions. Not sure how are they used. Ask @corey 164 // WordCamp uses an ID with questions. Not sure how are they used. Ask @corey. 165 165 $values = array( 166 166 'q_name' => '', … … 232 232 add_post_meta( $post_id, 'Meetup Location', $data['q_mtp_loc'] ); 233 233 add_post_meta( 234 $post_id, '_status_change', array( 234 $post_id, 235 '_status_change', 236 array( 235 237 'timestamp' => time(), 236 238 'user_id' => $wordcamp_user_id, … … 279 281 */ 280 282 public static function get_application_report_url() { 281 return "https://central.wordcamp.org/reports/meetup-applications/";283 return 'https://central.wordcamp.org/reports/meetup-applications/'; 282 284 } 283 285
Note: See TracChangeset
for help on using the changeset viewer.