Вход Регистрация
Файл: upload/include/library/phpfox/gateway/interface.class.php
Строк: 62
<?php
/**
 * [PHPFOX_HEADER]
 */

defined('PHPFOX') or exit('NO DICE!');

/**
 * Payment Gateway API Template
 * 
 * Payment periods:
 *     0 = never
 *  1 = monthly
 *  2 = quarterly
 *  3 = biannually
 *  4 = annually
 * 
 * @copyright        [PHPFOX_COPYRIGHT]
 * @author            Raymond Benc
 * @package         Phpfox
 * @version         $Id: interface.class.php 1666 2010-07-07 08:17:00Z Raymond_Benc $ 
 */
interface Phpfox_Gateway_Interface
{    
    
/**
     * Set the settings to be used with this class and prepare them so they are in an array
     *
     * @param array $aSetting ARRAY of settings to prepare
     */    
    
public function set($aSetting);
    
    
/**
     * Each gateway has a unique list of params that must be passed with the HTML form when posting it
     * to their site. This method creates that set of custom fields.
     *
     * @return array ARRAY of all the custom params
     */    
    
public function getEditForm();
    
    
/**
     * Returns the actual HTML <form> used to post information to the 3rd party gateway when purchasing
     * an item using this specific payment gateway
     *
     * @return bool FALSE if we can't use this payment gateway to purchase this item or ARRAY if we have successfully created a form
     */    
    
public function getForm();
    
    
/**
     * Performs the callback routine when the 3rd party payment gateway sends back a request to the server,
     * which we must then back and verify that it is a valid request. This then connects to a specific module
     * based on the information passed when posting the form to the server.
     *
     */    
    
public function callback();
}

?>
Онлайн: 2
Реклама