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

[eluser]pickupman[/eluser]
Yeah, I mentioned I added that.
Code:
/**
     * Initialize the configuration variables
     * @param array
     * @return void
     */
     public function initialize( $options = array() ){
        if(is_array($options)){
            foreach($options as $key => $value){
                $this->$key = $value;
            }
        }
        
        // populate $fields array with a few default values.  See the paypal
        // documentation for a list of fields and their data types. These defaul
        // values can be overwritten by the calling script.
        $this->add_field('rm','2');              // Return method = POST
        $this->add_field('cmd',$this->paypal_cmd);
        
        return;

You will have to create the class property paypal cmd
Code:
class Paypal_lib{
  var $paypal_cmd = '_x-click'; //define property


}


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