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 $

    abstract class LieferantenBase
    {
        protected $bestellungen;

        public function __construct( $bestellungen )
        {
            if ( is_array( $bestellungen ) )
            {
                $this->bestellungen = $bestellungen;
            }
            else
            {
                $msg = "Parameter muß ein Array sein!" . PHP_EOL;
                $type = var_export( $bestellungen, true );
                $user_info = $msg . $type . PHP_EOL;
                PEAR::throwError( $msg, 255, $user_info );
            }
        }

        public abstract function export( $k_nr );
    }
?>