Advertisement
Guest User

Untitled

a guest
May 26th, 2015
288
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. <?php
  2.  
  3. /*
  4. |--------------------------------------------------------------------------
  5. | General settings
  6. |--------------------------------------------------------------------------
  7. */
  8.  
  9. $config['donation_currency'] = "USD"; // Remember to change the currency ON PayGol as well!
  10. $config['donation_currency_sign'] = "$";
  11.  
  12. /*
  13. |--------------------------------------------------------------------------
  14. | PayPal Donation (www.paypal.com)
  15. |--------------------------------------------------------------------------
  16. */
  17.  
  18. $config['donate_paypal'] = array(
  19. 'use' => true, // true: enable | false: disable
  20. 'postback_url' => "http://divine-wow.net/donate/postback_paypal",
  21. 'return_url' => "http://divine-wow.net/donate/success",
  22. 'email' => "Email",
  23. 'sandbox' => false, // false: live servers | true: testing/dev servers
  24.  
  25. 'values' => array(
  26.  
  27. // Format: PRICE => DP
  28. // Example: 5 => 15 which would cause 5 USD
  29. // (or your specified currency) to give 15 DP
  30.  
  31.  
  32. 10 => 6,
  33. 25 => 15,
  34. 35 => 21,
  35. 50 => 40,
  36. 100 => 75
  37.  
  38. ),
  39.  
  40. );
  41.  
  42. /*
  43. |--------------------------------------------------------------------------
  44. | PayGol Donation (www.paygol.com)
  45. |--------------------------------------------------------------------------
  46. */
  47.  
  48. $config['donate_paygol'] = array(
  49. 'use' => true, // true: enable | false: disable
  50. 'service_id' => 53682, // Your PayGol service ID
  51. 'cancel_url' => "http://divine-wow.net/donate",
  52. 'return_url' => "http://divine-wow.net/donate/success",
  53.  
  54. 'values' => array(
  55.  
  56. // Format: PRICE => DP
  57. // Example: 5 => 15 which would cause 5 USD
  58. // (or your specified currency) to give 15 DP
  59.  
  60. 10 => 6,
  61. 25 => 15,
  62. 35 => 21,
  63. 50 => 40,
  64. 100 => 75
  65. ),
  66.  
  67. );
  68.  
  69.  
  70.  
  71.  
  72.  
  73. /*******************************************************************/
  74. /******************* blade-wow.com *******************************/
  75. /*******************************************************************/
  76.  
  77. // Credits: Jesper for Making the script.
  78. $config['force_code_editor'] = true;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement