Changeset 2395
- Timestamp:
- 01/28/2016 12:50:14 AM (10 years ago)
- Location:
- sites/trunk/wordcamp.org/public_html/wp-content/plugins
- Files:
-
- 8 edited
-
wordcamp-payments-network/bootstrap.php (modified) (1 diff)
-
wordcamp-payments-network/includes/payment-requests-dashboard.php (modified) (2 diffs)
-
wordcamp-payments/bootstrap.php (modified) (1 diff)
-
wordcamp-payments/css/wordcamp-budgets.css (modified) (1 diff)
-
wordcamp-payments/includes/payment-request.php (modified) (6 diffs)
-
wordcamp-payments/includes/reimbursement-request.php (modified) (1 diff)
-
wordcamp-payments/includes/sponsor-invoice.php (modified) (3 diffs)
-
wordcamp-payments/includes/wordcamp-budgets.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments-network/bootstrap.php
r2393 r2395 3 3 /* 4 4 * Plugin Name: WordCamp Budgets Dashboard 5 * Description: Provides an overview of WordCamp budgets, payment requests, and sponsor invoices across the network.5 * Description: Provides an overview of WordCamp budgets, sponsor invoices, vendor payments, and reimbursement requests across the network. 6 6 * Version: 0.1 7 7 * Author: WordCamp.org -
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments-network/includes/payment-requests-dashboard.php
r2366 r2395 185 185 $dashboard = add_submenu_page( 186 186 'wordcamp-budgets-dashboard', 187 'WordCamp Payments Requests',188 ' Payments Requests',187 'WordCamp Vendor Payments', 188 'Vendor Payments', 189 189 'manage_network', 190 190 'wcp-dashboard', … … 215 215 216 216 <div class="wrap"> 217 <h1> Payment Requests</h1>217 <h1>Vendor Payments</h1> 218 218 219 219 <?php settings_errors(); ?> -
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments/bootstrap.php
r2392 r2395 3 3 Plugin Name: WordCamp Budgets 4 4 Plugin URI: http://wordcamp.org/ 5 Description: Provides tools for managing WordCamp budgets, sponsor invoices, and payment requests.5 Description: Provides tools for managing WordCamp budgets, sponsor invoices, vendor payments, and reimbursement requests. 6 6 Author: WordCamp.org 7 7 Author URI: https://wordcamp.org -
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments/css/wordcamp-budgets.css
r2392 r2395 61 61 62 62 /* 63 * Payment Requests63 * Vendor Payments 64 64 */ 65 65 -
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments/includes/payment-request.php
r2373 r2395 2 2 3 3 /* 4 * Create the Payment Requestpost type and associated functionality4 * Create the Vendor Payments post type and associated functionality 5 5 */ 6 6 class WCP_Payment_Request { … … 39 39 public function register_post_type() { 40 40 $labels = array( 41 'name' => _x( 'Payment Requests', 'post type general name', 'wordcamporg' ), 42 'singular_name' => _x( 'Payment Request', 'post type singular name', 'wordcamporg' ), 43 'menu_name' => _x( 'Payment Requests', 'admin menu', 'wordcamporg' ), 44 'name_admin_bar' => _x( 'Payment Request', 'add new on admin bar', 'wordcamporg' ), 45 'add_new' => _x( 'Add New', 'payment', 'wordcamporg' ), 46 'add_new_item' => __( 'Add New Payment Request', 'wordcamporg' ), 47 'new_item' => __( 'New Payment Request', 'wordcamporg' ), 48 'edit_item' => __( 'Edit Payment Request', 'wordcamporg' ), 49 'view_item' => __( 'View Payment Request', 'wordcamporg' ), 50 'all_items' => __( 'Payment Requests', 'wordcamporg' ), 51 'search_items' => __( 'Search Payment Requests', 'wordcamporg' ), 52 'parent_item_colon' => __( 'Parent Payment Requests:', 'wordcamporg' ), 53 'not_found' => __( 'No payment requests found.', 'wordcamporg' ), 54 'not_found_in_trash' => __( 'No payment requests found in Trash.', 'wordcamporg' ) 41 'name' => _x( 'Vendor Payments', 'post type general name', 'wordcamporg' ), 42 'singular_name' => _x( 'Vendor Payment', 'post type singular name', 'wordcamporg' ), 43 'menu_name' => _x( 'Vendor Payments', 'admin menu', 'wordcamporg' ), 44 'name_admin_bar' => _x( 'Vendor Payment', 'add new on admin bar', 'wordcamporg' ), 45 'add_new' => _x( 'Add New', 'payment', 'wordcamporg' ), 46 47 'add_new_item' => __( 'Add New Vendor Payment', 'wordcamporg' ), 48 'new_item' => __( 'New Vendor Payment', 'wordcamporg' ), 49 'edit_item' => __( 'Edit Vendor Payment', 'wordcamporg' ), 50 'view_item' => __( 'View Vendor Paymentt', 'wordcamporg' ), 51 'all_items' => __( 'Vendor Payments', 'wordcamporg' ), 52 'search_items' => __( 'Search Vendor Payments', 'wordcamporg' ), 53 'parent_item_colon' => __( 'Parent Vendor Payments:', 'wordcamporg' ), 54 'not_found' => __( 'No Vendor Payments found.', 'wordcamporg' ), 55 'not_found_in_trash' => __( 'No Vendor Payments found in Trash.', 'wordcamporg' ) 55 56 ); 56 57 57 58 $args = array( 58 59 'labels' => $labels, 59 'description' => 'WordCamp Payment Requests',60 'description' => 'WordCamp Vendor Payments', 60 61 'public' => false, 61 62 'show_ui' => true, … … 455 456 456 457 /** 457 * Display the status of a post after its title on the Payment Requests page458 * Display the status of a post after its title on the Vendor Payments page 458 459 * 459 460 * @param array $states … … 507 508 508 509 /** 509 * Determine if the user wants to mark a payment request as incomplete, and if that is valid510 * Determine if the user wants to mark a vendor payment as incomplete, and if that is valid 510 511 * 511 512 * @return bool … … 729 730 730 731 /** 731 * Define columns for the Payment Requests screen.732 * Define columns for the Vendor Payments screen. 732 733 * 733 734 * @param array $_columns … … 761 762 762 763 /** 763 * Render custom columns on the Payment Requests screen.764 * Render custom columns on the Vendor Payments screen. 764 765 * 765 766 * @param string $column -
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments/includes/reimbursement-request.php
r2392 r2395 383 383 384 384 /** 385 * Display the status of a post after its title on the Payment Requests page385 * Display the status of a post after its title on the Vendor Payments page 386 386 * 387 387 * @todo centralize this, since it's the same in other modules -
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments/includes/sponsor-invoice.php
r2357 r2395 286 286 287 287 /** 288 * Display the status of a post after its title on the Payment Requests page288 * Display the status of a post after its title on the Vendor Payments page 289 289 * 290 290 * @param array $states … … 389 389 390 390 /** 391 * Define columns for the Payment Requests screen.391 * Define columns for the Vendor Payments screen. 392 392 * 393 393 * @param array $_columns … … 409 409 410 410 /** 411 * Render custom columns on the Payment Requests screen.411 * Render custom columns on the Vendor Payments screen. 412 412 * 413 413 * @param string $column -
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-payments/includes/wordcamp-budgets.php
r2394 r2395 411 411 412 412 /** 413 * Attach unattached files to the payment request post413 * Attach unattached files to the Vendor Payment post 414 414 * 415 415 * Sometimes users will upload the files manually to the Media Library, instead of using the Add Files button,
Note: See TracChangeset
for help on using the changeset viewer.