Changeset 2535
- Timestamp:
- 02/19/2016 12:40:37 AM (9 years ago)
- Location:
- sites/trunk/wordcamp.org/public_html/wp-content/plugins
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments-network/includes/reimbursement-requests-dashboard.php
r2393 r2535 199 199 // Drafts, etc aren't displayed in the list table, so there's no reason to index them 200 200 $ignored_statuses = array( 'auto-draft', 'draft', 'trash' ); 201 // todo also `inherit`. should switch to whitelist instead of blacklist 201 202 202 203 if ( in_array( $request->post_status, $ignored_statuses, true ) ) { -
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments-network/includes/wordcamp-budgets-dashboard.php
r2356 r2535 82 82 * Currency Conversion 83 83 * 84 * @todo Now that we're pushing invoices and payments to QuickBooks, we can pull the actual value from their API, 85 * instead of these estimates, which quickly become outdated since the conversion rates change daily. 86 * 84 87 * @param string $from What currency are we selling. 85 88 * @param string $to What currency are we buying. -
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments/includes/sponsor-invoice.php
r2525 r2535 347 347 $post_data['post_status'] = 'draft'; 348 348 349 // todo display message to user letting them know why this is happening 349 350 // todo this should run after save, b/c sanitization/validation could empty out some fields 350 351 -
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments/includes/wordcamp-budgets.php
r2494 r2535 479 479 * Get a list of all world currencies, with the most frequently used at the top. 480 480 * 481 * @todo Bring this in line with ISO 4217 482 * 481 483 * @return array 482 484 */ -
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments/views/reimbursement-request/metabox-general-information.php
r2392 r2535 36 36 <option value="<?php echo esc_attr( $currency_key ); ?>" <?php selected( $currency_key, $selected_currency ); ?> > 37 37 <?php echo esc_html( $currency_name ); ?> 38 <?php // todo - For better UX, prepend the code to the name (USD - United States Dollar), and sort by the code. Updating the sorting in get_currencies(). Also make this change other places this is used ?> 38 39 </option> 39 40 <?php endforeach; ?>
Note: See TracChangeset
for help on using the changeset viewer.