Making WordPress.org


Ignore:
Timestamp:
01/11/2016 10:15:37 PM (9 years ago)
Author:
iandunn
Message:

WordCamp Budgets: Reorganize to make room for additional modules.

Soon we'll be adding modules for Budgets and Sponsor Invoices, in addition to the existing one for Payment Requests.

File:
1 edited

Legend:

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

    r1947 r2272  
    11<?php
    22/*
    3 Plugin Name: WordCamp Payments
     3Plugin Name: WordCamp Budgets
    44Plugin URI:  http://wordcamp.org/
    5 Description: Provides tools for collecting and processing payment requests from WordCamp organizers.
    6 Author:      tellyworth, iandunn
     5Description: Provides tools for managing WordCamp budgets, sponsor invoices, and payment requests.
     6Author:      WordCamp.org
     7Author URI:  https://wordcamp.org
    78Version:     0.1
    89*/
     
    1314
    1415if ( is_admin() ) {
    15     require_once( __DIR__ . '/classes/wordcamp-payments.php' );
    16     require_once( __DIR__ . '/classes/payment-request.php' );
    17     require_once( __DIR__ . '/classes/encryption.php' );
     16    require_once( __DIR__ . '/includes/wordcamp-budgets.php' );
     17    require_once( __DIR__ . '/includes/payment-request.php' );
     18    require_once( __DIR__ . '/includes/encryption.php' );
    1819
    19     $GLOBALS['wordcamp_payments']   = new WordCamp_Payments();
     20    $GLOBALS['wordcamp_budgets']    = new WordCamp_Budgets();
    2021    $GLOBALS['wcp_payment_request'] = new WCP_Payment_Request();
    2122}
Note: See TracChangeset for help on using the changeset viewer.