1 <?php
2
3 /* --------------------------------------------------------------
4 OrderPaymentTypeInterface.inc.php 2015-11-04 gm
5 Gambio GmbH
6 http://www.gambio.de
7 Copyright (c) 2015 Gambio GmbH
8 Released under the GNU General Public License (Version 2)
9 [http://www.gnu.org/licenses/gpl-2.0.html]
10 --------------------------------------------------------------
11 */
12
13 /**
14 * Interface OrderShippingTypeInterface
15 *
16 * @category System
17 * @package Order
18 * @subpackage Interfaces
19 */
20 interface OrderShippingTypeInterface
21 {
22 /**
23 * Returns the order shipping type title.
24 *
25 * @return string Order shipping type title.
26 */
27 public function getTitle();
28
29
30 /**
31 * Returns the order shipping type module.
32 *
33 * @return string Order shipping type module.
34 */
35 public function getModule();
36 }