Subversion-Projekte lars-tiefland.php_share

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<?php

    /**
     * @package   php_share
     * @author    Lars Tiefland <tiefland@weban.de>
     * @copyright 2010 Webagentur Niewerth
     * @license   propietary http://www.weban.de
     * @version   $Rev: 439 $
     * @filesource
     * 
     */

    /**
     * 
     * @package   php_share
     * @author    Lars Tiefland <tiefland@weban.de>
     * @copyright 2010 Webagentur Niewerth
     */

    // SVN: $Id: creditcard.interface.php 439 2011-03-10 07:59:29Z tiefland $

    interface creditcard
    {
        // Diese Funktionen müssen bei der Implementierung mit Leben gefüllt werden.

        function __construct();
        function getCreditcardStatus( $id );
        function getCreditcardReturnStatus( $id );
        function genCheckSum( $src );
    }
?>