Icy Phoenix

     
 


Post new topic  This topic is locked: you cannot edit posts or make replies. 
Page 1 of 2
Goto page 1, 2  Next
 
Reply with quote Download Post 
Post Donation (Spenden) MOD with PayPal IPN 
 
Hi there,

some month ago i have started to addapt this MOD to phpBBXS.

i ant to share this with you, when the new release is out, but next week i have to leave my home for work and so i´m not on my PC, so i´ll share it now.

Code: [Download] [Hide]
  1. ##############################################################  
  2. ## MOD Title: Donation MOD phpBBXS  
  3. ##  
  4. ## MOD Author: sandodo < zouxiong@loewen.com.sg > (Xiong Zou) http://bbs.loewen.com.sg & http://forum.loewen.com.sg  
  5. ##  
  6. ## MOD Addon Developer/author: KugeLSichA < kugelsicha@caromonline.de > (HoLLe) http://www.caromguild.de  
  7. ##  
  8. ## MOD Description: Admin can set PayPal accounts to receive donations,  
  9. ##                  Donors can choose to be anonymous when donation,  
  10. ##                  Admin can set how many points to give to donor when donation, (Must have points MOD installed, otherwise, set it to 0 )  
  11. ##                  Admin can also set how many posts count to give to donor when donation,  
  12. ##                  Admin can set current donation goal, description and duration,  
  13. ##                  Admin can set to display top donors or last donors,  
  14. ##                  Admin can manually inset donation information  
  15. ##                  Admin can set which group the donor can join after donation, currently support different two groups  
  16. ##                  Admin can set which special rank the donor will be set to after donation, anonymous donor will not be set for this special rank  
  17. ##                  Supports multi-currencies.  
  18. ##                    
  19. ##                  NOTE: I set up the user rank No.5 ("user_rank5") for the donors Special rank!  
  20. ##                    
  21. ##                  Only the First Admin (user_id = 2) can set up and change the PayPal email adress in ACP!  
  22. ##  
  23. ## MOD Version: 1.0.3  
  24. ##  
  25. ## MOD DEMO: http://www.caromguild.de  
  26. ##  
  27. ## MOD Requirements: phpBBXS Version 058 or higher  
  28. ##  
  29. ## Installation Level: Easy  
  30. ## Installation Time: 10  
  31. ## Files To Edit: 13  
  32. ##                adm/index.php  
  33. ##                forum.php  
  34. ##                includes/constants.php  
  35. ##                includes/functions.php  
  36. ##                includes/functions_dbmtnc.php  
  37. ##                includes/page_header.php  
  38. ##                language/lang_english/lang_admin.php  
  39. ##                language/lang_english/lang_main.php  
  40. ##                language/lang_german/lang_admin.php  
  41. ##                language/lang_german/lang_main.php  
  42. ##                templates/ca_aphrodite/index_body.tpl  
  43. ##                templates/ca_aphrodite/overall_header.tpl  
  44. ##                viewonline.php  
  45. ## Included Files:  22  
  46. ##                  donors.php  
  47. ##                  donateconfirm.php  
  48. ##                  donateresult.php  
  49. ##                  donate.php  
  50. ##                  donateshowresult.php  
  51. ##                    
  52. ##                  templates/ca_aphrodite/donors_body.tpl  
  53. ##                  templates/ca_aphrodite/donate_body.tpl  
  54. ##                  templates/ca_aphrodite/donate_topupconfirm_body.tpl  
  55. ##                    
  56. ##                  adm/admin_donors.php  
  57. ##                  adm/admin_donate_currency.php  
  58. ##                  adm/admin_donate_settings.php  
  59. ##                    
  60. ##                  templates/ca_aphrodite/admin/donors_config_body.tpl  
  61. ##                  templates/ca_aphrodite/admin/donate_currency_config_body.tpl  
  62. ##                  templates/ca_aphrodite/admin/donate_settings_config_body.tpl  
  63. ##                    
  64. ##                  language/lang_english/lang_admin_donate.php  
  65. ##                  language/lang_english/email/html/thanku_donation.tpl  
  66. ##                  language/lang_english/email/txt/thanku_donation.tpl  
  67. ##                  language/lang_german/lang_admin_donate.php  
  68. ##                  language/lang_german/email/html/thanku_donation.tpl  
  69. ##                  language/lang_german/email/txt/thanku_donation.tpl  
  70. ##                    
  71. ##                  images/PayPal_mark_37x23.gif  
  72. ##                  install/db_update.php  
  73. ##############################################################  
  74. ##############################################################  
  75. ## Author Notes:  
  76. ##  
  77. ## Terms of Use  
  78. ##  
  79. ## All of my MODifications are to use and edit/change for phpBB End Users  
  80. ## Plese DO NOT remove any copyright/licence declaration when using the MODification  
  81. ## I will remain as the sole developer for all my MODifications unless stated otherwise  
  82. ##  
  83. ## Distribution Terms  
  84. ## All of my MODifications are prohibited to distribute to others without the permission  
  85. ## from me.  
  86. ## Plese DO NOT remove any copyright/licence declaration when using the MODification  
  87. ## I will remain as the sole developer for all my MODifications unless stated otherwise  
  88. ##  
  89. ## Re-Distribution Terms  
  90. ## If you are distributing WHOLE or PART of my MOD in your MOD Projects or Pre-modded  
  91. ## Projects or any other means, you must: Get the formal authorization from me first.  
  92. ## Plese DO NOT remove any copyright/licence declaration when using the MODification  
  93. ## I will remain as the sole developer for all my MODification unless stated otherwise. Do  
  94. ## NOT declare youself as my co-developer  
  95. ## Re-Distribution Terms DOES NOT apply to MOD authors that developing Add-Ons to my MOD.  
  96. ##  
  97. ##############################################################  
  98. ## MOD History:  
  99. ##  
  100. ##   2004-09-20  -  Version 1.0.1  
  101. ##      - init version  
  102. ##    
  103. ##   2004-10-15  -  Version 1.0.2  
  104. ##      - second release: admin manual insert donation record; devide donor to different groups; mark donor as donor;  
  105. ##    
  106. ##   2006-08-09  -  Version 1.0.2 XS  
  107. ##      - some changes/code cleanup to get this running with the phpBBXS Version 058 or higher  
  108. ##  
  109. ##   2006-09-23  -  Version 1.0.3 XS  
  110. ##      - created new page admin_donate_settings.php  
  111. ##      - created thanku_donation.tpl so that the donor can recieve an Thank You Email  
  112. ##      - Only first Admin (with userid 2) can set up the PayPal email adress in ACP  
  113. ##      - view donors at donate.php page bottom  
  114. ##      - added PAGE_DONATE session, so that Admin can see if a user is viewing the donate pages  
  115. ##      - some TPL and PHP cleanup  
  116. ##    - changed, deleted and added all lang VARS (phpBB conform)  
  117. ##    - merged the two admin_lang pages into one  
  118. ##    - added different "Donate" language images, set by userlanguage  
  119. ##    
  120. ##  
  121. ##############################################################  
  122. ## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD  
  123. ##############################################################  
  124.  


Full credit goes to the first MOD Author Xiong Zou. And also thx to him that he gives me the right to share this with you, because its not under the GPL. You can also visit his forum for other new cool staff.

The Donation MOD can be download in my testforum    http://www.caromguild.de/downloads.php?cat=3   no register is required.

it would be great if you can help me to find bugs, and report them here, but lease not that im away for a week after today evening.

Also if i have some free time i need to do some code cleanup, but the MOD should work now.

enjoy and have fun.

greets
 




____________

Play Games at GamesCampus!
 
Last edited by KugeLSichA on Mon 25 Sep, 2006 20:54; edited 1 time in total 
KugeLSichASend private messageVisit poster's website  
Back to topPage bottom
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.

Support us
 
Reply with quote Download Post 
Post Re: Donation (Spenden) MOD With PayPal IPN 
 
can't download without registration
 




____________
*VOLVO CLUB*
 
difusSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Donation (Spenden) MOD with PayPal IPN 
 
opps.. sry.

Fixed!
 




____________

Play Games at GamesCampus!
 
KugeLSichASend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Donation (Spenden) MOD with PayPal IPN 
 
Quote:
We dont want to insert only a simple Donate button here, we also want to explains, why we would be pleased about (every small) donation from you.


I like it    It's professional.
 



 
NikolaSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Donation (Spenden) MOD with PayPal IPN 
 
Nikola wrote: [View Post]
Quote:
We dont want to insert only a simple Donate button here, we also want to explains, why we would be pleased about (every small) donation from you.


I like it    It's professional.


thx.. the explain texts are from me... maybe not so good translated into english...  
 




____________

Play Games at GamesCampus!
 
KugeLSichASend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Donation (Spenden) MOD With PayPal IPN 
 
thanks

it is nice to see download mod  
 




____________
*VOLVO CLUB*
 
difusSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Donation (Spenden) MOD With PayPal IPN 
 
Great! Thanks.
 




____________
Megabass
 
ganeshSend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Donation (Spenden) MOD With PayPal IPN 
 
difus wrote: [View Post]
thanks

it is nice to see download mod  


ok now im back and i will start clean up the code and provide it as an XS MOD in the near future
 




____________

Play Games at GamesCampus!
 
KugeLSichASend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Donation (Spenden) MOD with PayPal IPN 
 
please apply this patch.

Code: [Download] [Hide] [Select]
#
#-----[ OPEN ]------------------------------------------
#
donors.php

#
#-----[ FIND ]------------------------------------------
#
    $template->assign_vars(array(
        'PAGINATION' => generate_pagination("acctrecords.$phpEx?topicdays=$topic_days&userid=$user_id&mode=$donormode", $topics_count, $topicsperpage, $start),
#
#-----[ REPLACE WITH ]------------------------------------------
#
    $template->assign_vars(array(
        'PAGINATION' => generate_pagination("donors.$phpEx?topicdays=$topic_days&userid=$user_id&mode=$donormode", $topics_count, $topicsperpage, $start),


Download package updated
 




____________

Play Games at GamesCampus!
 
KugeLSichASend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Donation (Spenden) MOD with PayPal IPN 
 
first Post updated
 




____________

Play Games at GamesCampus!
 
KugeLSichASend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Donation (Spenden) MOD With PayPal IPN 
 
Hello,
my english is very bad.
Can you include this mode as standard in the next version?
 



 
columbo1979Send private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Donation (Spenden) MOD with PayPal IPN 
 
columbo1979 wrote: [View Post]
Hello,
my english is very bad.
Can you include this mode as standard in the next version?

I think it won't be included in the package... it will probably remain an addon.
 




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Donation (Spenden) MOD With PayPal IPN 
 
Italian, Spanish, Catala and Serbian translations?
 




____________
Cosenza United::FCC
My Problem Child
 
fracsSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Donation (Spenden) MOD with PayPal IPN 
 
after IP is no BETA Status i release this as Add On on my site....

I have done some changes to this version.

cheers
 




____________

Play Games at GamesCampus!
 
KugeLSichASend private messageVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Donation (Spenden) MOD with PayPal IPN 
 
This modification is only for php XS and maybe is not working with IcyPhoenix.

If you are the author or are able to make them icy compatible, please feel free to post it.    

Thanks for your time and the good work so far.

 




____________
? Zuker - EDDB - LPM - Sharefields
 
ZukerSend private messageVisit poster's website  
Back to topPage bottom
Post new topic  This topic is locked: you cannot edit posts or make replies.  Page 1 of 2
Goto page 1, 2  Next


Display posts from previous:    

HideWas this topic useful?

Link this topic
URL
BBCode
HTML




 
Permissions List
You cannot post new topics
You cannot reply to topics
You cannot edit your posts
You cannot delete your posts
You cannot vote in polls
You cannot attach files
You can download files
You cannot post calendar events


  

 

  cron