-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIntelliSenseHelper.php
More file actions
75 lines (61 loc) · 1.62 KB
/
IntelliSenseHelper.php
File metadata and controls
75 lines (61 loc) · 1.62 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
63
64
65
66
67
68
69
70
71
72
73
74
75
<?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 {
use Symfony\Component\DependencyInjection\Container;
class d3CacheContainer extends Container
{
public function __construct()
{
parent::__construct();
}
}
}
namespace D3\ModCfg\Modules {
use D3\DIContainerHandler\definitionFileContainer;
class ModCfgServices_parent extends definitionFileContainer
{
}
}
namespace D3\ModCfg\Modules\Application\Controller
{
use OxidEsales\Eshop\Core\ShopControl;
class d3_oxshopcontrol_modcfg_extension_parent extends ShopControl
{
}
}
namespace D3\ModCfg\Modules\Application\Model
{
use OxidEsales\Eshop\Application\Model\Shop;
class d3_oxshop_modcfg_parent extends Shop
{
}
}
namespace D3\ModCfg\Modules\Application\Controller\Admin
{
use OxidEsales\Eshop\Application\Controller\Admin\NavigationController;
use OxidEsales\Eshop\Application\Controller\Admin\RolesBackendMain;
class d3_roles_bemain_rolesrights_parent extends RolesBackendMain
{
}
class d3_navigation_modcfgupdate_parent extends NavigationController
{
}
}
namespace D3\ModCfg\Modules\Core
{
use OxidEsales\Eshop\Core\Theme;
class d3_oxtheme_modcfg_parent extends Theme
{
}
}