-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathskeleton.php
executable file
·162 lines (137 loc) · 4.5 KB
/
skeleton.php
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<?php
/**
* NOTICE OF LICENSE
*
* @author acoalex, UAB www.acoalex.com <[email protected]>
* @copyright Copyright (c) permanent, acoalex, UAB
* @license MIT
* @see /LICENSE
*
* International Registered Trademark & Property of acoalex, UAB
*/
use acoalex\Skeleton\Install\Installer;
use acoalex\Skeleton\Install\Tab;
use acoalex\Skeleton\Install\Uninstaller;
use Symfony\Component\Config\ConfigCache;
use Symfony\Component\Config\FileLocator;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Symfony\Component\DependencyInjection\Dumper\PhpDumper;
use Symfony\Component\DependencyInjection\Loader\YamlFileLoader;
class Skeleton extends Module
{
/**
* If false, then SkeletonContainer is in immutable state
*/
const DISABLE_CACHE = true;
const CONFIG_VARS_KEYS = ["title", "avatar"];
/**
* @var SkeletonContainer
*/
private $moduleContainer;
public $template_dir;
public function __construct()
{
$this->tab = 'other_modules';
$this->name = 'skeleton';
$this->version = '1.0.0';
$this->author = 'acoalex';
parent::__construct();
$this->autoLoad();
$this->compile();
$this->displayName = $this->l('Skeleton');
$this->description = $this->l('This is module description');
$this->template_dir = '../../../../modules/' . $this->name . '/views/templates/admin/';
}
public function getTabs()
{
/** @var Tab $tab */
$tab = $this->getContainer()->get('install.tab');
return $tab->getTabs();
}
public function getContent()
{
/** @var Tab $tab */
$tab = $this->getContainer()->get('install.tab');
$redirectLink = $this->context->link->getAdminLink($tab->getControllerInfo());
Tools::redirectAdmin($redirectLink);
}
public function install()
{
/** @var Installer $installer */
$installer = $this->getContainer()->get('installer');
return parent::install() && $installer->init();
}
public function uninstall()
{
/** @var Uninstaller $unInstaller */
$unInstaller = $this->getContainer()->get('uninstaller');
$this->deleteConfiguration();
return parent::uninstall() && $unInstaller->init();
}
public function hookActionDispatcherBefore()
{
$this->autoLoad();
}
/**
* Gets container with loaded classes defined in src folder
*
* @return SkeletonContainer
*/
public function getContainer(): ContainerInterface
{
return $this->moduleContainer;
}
/**
* Autoload's project files from /src directory
*/
private function autoLoad()
{
$autoLoadPath = $this->getLocalPath() . 'vendor/autoload.php';
require_once $autoLoadPath;
}
/**
* Creates compiled dependency injection container which holds data configured in config/config.yml file.
*
* @throws Exception
*/
private function compile()
{
$containerCache = $this->getLocalPath() . 'var/cache/container.php';
$containerConfigCache = new ConfigCache($containerCache, self::DISABLE_CACHE);
$containerClass = get_class($this) . 'Container';
if (!$containerConfigCache->isFresh()) {
$containerBuilder = new ContainerBuilder();
$locator = new FileLocator($this->getLocalPath() . '/config');
$loader = new YamlFileLoader($containerBuilder, $locator);
$loader->load('config.yml');
$containerBuilder->compile();
$dumper = new PhpDumper($containerBuilder);
$containerConfigCache->write(
$dumper->dump(['class' => $containerClass]),
$containerBuilder->getResources()
);
}
require_once $containerCache;
$this->moduleContainer = new $containerClass();
}
public function getConfig($key)
{
$config = $this->getConfigVars();
return (array_key_exists($key, $config)) ? $config[$key] : null;
}
public function getConfigVars()
{
$configVars = [];
foreach (Skeleton::CONFIG_VARS_KEYS as $key) {
$configVars[$key] = Configuration::get($this->name . "_" . $key);
}
return $configVars;
}
private function deleteConfiguration()
{
foreach (self::CONFIG_VARS_KEYS as $key) {
Configuration::deleteByName($this->name . "_" . $key);
}
}
}