Changeset 2521
- Timestamp:
- 02/18/2016 09:40:49 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordcamp.org/public_html/wp-content/plugins/wordcamp-qbo/wordcamp-qbo.php
r2473 r2521 10 10 private static $hmac_key; 11 11 12 private static $sandbox_mode; 12 13 private static $account; 13 14 private static $api_base_url; … … 35 36 */ 36 37 public static function plugins_loaded() { 38 self::$sandbox_mode = apply_filters( 'wordcamp_qbo_sandbox_mode', false ); 37 39 38 40 $init_options = wp_parse_args( apply_filters( 'wordcamp_qbo_options', array() ), array( … … 54 56 self::$api_base_url = sprintf( 55 57 'https://%squickbooks.api.intuit.com', 56 apply_filters( 'wordcamp_qbo_sandbox_mode', false )? 'sandbox-' : ''58 self::$sandbox_mode ? 'sandbox-' : '' 57 59 ); 58 60
Note: See TracChangeset
for help on using the changeset viewer.