Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
3 lars 1
<?php
2
 
3
    /**
4
     * @package   php_share
5
     * @author    Lars Tiefland <tiefland@weban.de>
6
     * @copyright 2010 Webagentur Niewerth
7
     * @license   propietary http://www.weban.de
8
     * @version   $Rev: 439 $
9
     * @filesource
10
     *
11
     */
12
 
13
    /**
14
     *
15
     * @package   php_share
16
     * @author    Lars Tiefland <tiefland@weban.de>
17
     * @copyright 2010 Webagentur Niewerth
18
     */
19
 
20
    // SVN: $Id: creditcard.interface.php 439 2011-03-10 07:59:29Z tiefland $
21
 
22
    interface creditcard
23
    {
24
        // Diese Funktionen müssen bei der Implementierung mit Leben gefüllt werden.
25
 
26
        function __construct();
27
        function getCreditcardStatus( $id );
28
        function getCreditcardReturnStatus( $id );
29
        function genCheckSum( $src );
30
    }
31
?>