-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIntelliSenseHelper.php
More file actions
61 lines (54 loc) · 1.65 KB
/
IntelliSenseHelper.php
File metadata and controls
61 lines (54 loc) · 1.65 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
<?php
/**
* Copyright (c) D3 Data Development (Inh. Thomas Dartsch)
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*
* https://www.d3data.de
*
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
* @author D3 Data Development - Daniel Seifert <info@shopmodule.com>
* @link https://www.oxidmodule.com
*/
namespace D3\Articlevoucher\Modules\Application\Controller
{
use OxidEsales\Eshop\Application\Controller\BasketController;
class d3_basket_updatevoucherinfo_parent extends BasketController
{
}
}
namespace D3\Articlevoucher\Modules\Application\Controller\Admin
{
use OxidEsales\Eshop\Application\Controller\Admin\VoucherSerieMain;
class d3_voucherserie_main_addarticle_parent extends VoucherSerieMain
{
}
}
namespace D3\Articlevoucher\Modules\Application\Model
{
use OxidEsales\Eshop\Application\Model\Article;
use OxidEsales\Eshop\Application\Model\Basket;
use OxidEsales\Eshop\Application\Model\BasketItem;
use OxidEsales\Eshop\Application\Model\Discount;
use OxidEsales\Eshop\Application\Model\DiscountList;
use OxidEsales\Eshop\Application\Model\Voucher;
class d3_oxarticle_articlevoucher_parent extends Article
{
}
class d3_oxbasket_articlevoucher_parent extends Basket
{
}
class d3_oxbasketitem_articlevoucher_parent extends BasketItem
{
}
class d3_oxdiscount_articlevoucher_parent extends Discount
{
}
class d3_oxdiscountlist_articlevoucher_parent extends DiscountList
{
}
class d3_oxvoucher_articlevoucher_parent extends Voucher
{
}
}