|
Revision 109, 0.6 kB
(checked in by d0nut, 5 years ago)
|
|
released version 0.1 of donation plugin
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | require_once(WCF_DIR.'lib/system/event/listener/DonationAddFormAbstractListener.class.php'); |
|---|
| 3 | |
|---|
| 4 | /** |
|---|
| 5 | * googlecheckout |
|---|
| 6 | * |
|---|
| 7 | * @author Torben Brodt |
|---|
| 8 | * @package de.easy-coding.wcf.donation.googlecheckout |
|---|
| 9 | * @license GNU General Public License <http://opensource.org/licenses/gpl-3.0.html> |
|---|
| 10 | */ |
|---|
| 11 | class DonationAddFormGoogleCheckoutListener extends DonationAddFormAbstractListener { |
|---|
| 12 | protected $icon = 'googlecheckout48.png'; |
|---|
| 13 | protected $templateName = 'donationGoogleCheckout'; |
|---|
| 14 | protected $system = 'googlecheckout'; |
|---|
| 15 | |
|---|
| 16 | //data |
|---|
| 17 | protected $arr = array('googlecheckout_enable','googlecheckout_code'); |
|---|
| 18 | } |
|---|
| 19 | ?> |
|---|