-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIntelliSenseHelper.php
More file actions
62 lines (50 loc) · 1.47 KB
/
IntelliSenseHelper.php
File metadata and controls
62 lines (50 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
/**
* This Software is the property of Data Development and is protected
* by copyright law - it is NOT Freeware.
* Any unauthorized use of this software without a valid license
* is a violation of the license agreement and will be prosecuted by
* civil and criminal law.
* http://www.shopmodule.com
*
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
* @author D3 Data Development <support@shopmodule.com>
* @link http://www.oxidmodule.com
*/
namespace D3\Unzer\Modules\Core {
use D3\ModCfg\Application\Model\d3counter;
use OxidEsales\Eshop\Core as OxidCore;
class Counter_parent extends d3counter
{
}
class Email_parent extends OxidCore\Email
{
}
class InputValidator_parent extends OxidCore\InputValidator
{
}
}
namespace D3\Unzer\Modules\Application\Controller {
use OxidEsales\Eshop\Application\Controller as OxidController;
class OrderController_parent extends OxidController\OrderController
{
}
class PaymentController_parent extends OxidController\PaymentController
{
}
class ThankYouController_parent extends OxidController\ThankYouController
{
}
}
namespace D3\Unzer\Modules\Application\Model {
use OxidEsales\Eshop\Application\Model as OxidModel;
class Order_parent extends OxidModel\Order
{
}
class PaymentGateway_parent extends OxidModel\PaymentGateway
{
}
class BasketItem_parent extends OxidModel\BasketItem
{
}
}