donatebutton extension add to your site a box with a message and a button for donations through paypal.
You can optate for a fix or variable amount to be donated. For variable amount, there will be two selectors, one for amount and one for currencies.
You can set donatebutton box to be displayed vertical or horizontal, to easy integrate in your site.
donatebutton have a nice predefined box with transparent background, which you can choose to use or not.
Extension is XHTML valid.
Tested with Yii 1.1.7.
- Download the latest release package - Unpack it in /protected/extensions/ folder
If you wish to use a variable amount place in your page next code:
$this->widget('application.extensions.donatebutton.donatebutton', array( 'vertical' => false, 'show_frame' => false, 'biggerbutton' => false, 'fix_amount' => false, 'alt_button' => 'Donate', 'business' => 'user@email.com', 'item_name' => 'Support Your Business', 'message' => 'If you like our work, you may throw us some cookies. Donate ', 'selectable_amount' => array( 'min_amount'=>3, 'max_amount'=>10, 'selected_amount'=>5, 'selected_currency'=>'EUR', 'currencies'=>array('EUR', 'USD'),//or leave '' ) ) );
If you wish to have a fixed amount use next code:
$this->widget('application.extensions.donatebutton.donatebutton', array( 'vertical' => false, 'show_frame' => false, 'biggerbutton' => false, 'fix_amount' => true, 'alt_button' => 'Donate', 'business' => 'user@email.com', 'item_name' => 'Support Your Business', 'message' => 'If you like our work, you may throw us some cookies. Donate ', 'donation' => array( 'currency_code'=>'EUR', 'amount'=>5 ) ) );
Hint. Default values are marked as bold. If you needed values are same as default, you don't need to specify them in your code.
Be the first person to leave a comment
Please login to leave your comment.