Welcome Guest, Not a member yet? Register   Sign In
Paypal_Lib + Monthly Subscription
#4

[eluser]pickupman[/eluser]
You are on the right track. I think I may have added an initialize method as well, so I could pass an array to configure it. I also created a clear() method to reset the form fields. I was having multiple forms for subscriptions. I have in a controller:
Code:
//Setup subscription button
        $config['paypal_cmd'] = '_xclick-subscriptions';
        $this->paypal_lib->initialize($config); //set paypal cmd for subscriptions
        
        $subscription = array('a3' => '300',
                              'p3' => '1',
                              't3' => 'Y',
                              'src'=> '1'
                            );
        
        $this->paypal_lib->add_field('item_name','Membership');
        $this->paypal_lib->add_field('business', '[email protected]');
        $this->paypal_lib->button('Subscribe');
        $this->paypal_lib->add_subscription($subscription); //add array of subscription values
        $data['paypal_form'] .= $this->paypal_lib->paypal_form();


Messages In This Thread
Paypal_Lib + Monthly Subscription - by El Forum - 07-22-2010, 11:05 AM
Paypal_Lib + Monthly Subscription - by El Forum - 07-22-2010, 11:32 AM
Paypal_Lib + Monthly Subscription - by El Forum - 07-22-2010, 11:48 AM
Paypal_Lib + Monthly Subscription - by El Forum - 07-22-2010, 11:59 AM
Paypal_Lib + Monthly Subscription - by El Forum - 07-22-2010, 12:09 PM
Paypal_Lib + Monthly Subscription - by El Forum - 07-22-2010, 12:34 PM
Paypal_Lib + Monthly Subscription - by El Forum - 07-22-2010, 01:04 PM
Paypal_Lib + Monthly Subscription - by El Forum - 07-22-2010, 01:10 PM
Paypal_Lib + Monthly Subscription - by El Forum - 07-22-2010, 01:17 PM
Paypal_Lib + Monthly Subscription - by El Forum - 07-22-2010, 01:29 PM
Paypal_Lib + Monthly Subscription - by El Forum - 07-22-2010, 02:15 PM
Paypal_Lib + Monthly Subscription - by El Forum - 07-22-2010, 02:27 PM
Paypal_Lib + Monthly Subscription - by El Forum - 07-22-2010, 03:15 PM
Paypal_Lib + Monthly Subscription - by El Forum - 07-22-2010, 06:18 PM



Theme © iAndrew 2016 - Forum software by © MyBB