<?php

/* --------------------------------------------------------------
  PDFOrderExtenderComponent.inc.php 2012-05 gm
  Gambio GmbH
  http://www.gambio.de
  Copyright (c) 2012 Gambio GmbH
  Released under the GNU General Public License (Version 2)
  [http://www.gnu.org/licenses/gpl-2.0.html]
  --------------------------------------------------------------
 */
MainFactory::load_class('ExtenderComponent');
class PDFOrderExtenderComponent extends ExtenderComponent
{
    function extendOrderRight($order_right)
    {
        return $order_right;
    }
    function extendOrderData($order_data)
    {
        return $order_data;
    }
    function extendOrderTotal($order_total)
    {
        return $order_total;
    }
    function extendOrderInfo($order_info)
    {
        return $order_info;
    }
    function extendPdfFooter($pdf_footer)