-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathFeatureType.php
More file actions
172 lines (159 loc) · 6.79 KB
/
FeatureType.php
File metadata and controls
172 lines (159 loc) · 6.79 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
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
163
164
165
166
167
168
169
170
171
172
<?php
/*************************************************************************************/
/* This file is part of the module FeatureType */
/* */
/* Copyright (c) OpenStudio */
/* email : dev@thelia.net */
/* web : http://www.thelia.net */
/* */
/* For the full copyright and license information, please view the LICENSE.txt */
/* file that was distributed with this source code. */
/*************************************************************************************/
namespace FeatureType;
use Propel\Runtime\Connection\ConnectionInterface;
use Symfony\Component\DependencyInjection\Loader\Configurator\ServicesConfigurator;
use Symfony\Component\Finder\Finder;
use Thelia\Core\Template\TemplateDefinition;
use Thelia\Module\BaseModule;
use Thelia\Install\Database;
/**
* Class FeatureType
* @package FeatureType
* @author Gilles Bourgeat <gilles.bourgeat@gmail.com>
*/
class FeatureType extends BaseModule
{
const MODULE_DOMAIN = "featuretype";
const RESERVED_SLUG = 'id,feature_id,id_translater,locale,title,chapo,description,postscriptum,position';
const FEATURE_TYPE_AV_IMAGE_FOLDER = 'feature_type_av_images';
/** @var string */
const UPDATE_PATH = __DIR__ . DS . 'Config' . DS . 'update';
/**
* @param ConnectionInterface $con
*/
public function postActivation(ConnectionInterface $con = null): void
{
if (!self::getConfigValue('is_initialized', false)) {
$database = new Database($con);
$database->insertSql(null, [__DIR__ . "/Config/thelia.sql", __DIR__ . "/Config/insert.sql"]);
self::setConfigValue('is_initialized', true);
}
}
/**
* @param $currentVersion
* @param $newVersion
* @param ConnectionInterface|null $con
*/
public function update($currentVersion, $newVersion, ConnectionInterface $con = null): void
{
$finder = (new Finder())->files()->name('#.*?\.sql#')->sortByName()->in(self::UPDATE_PATH);
if ($finder->count() === 0) {
return;
}
$database = new Database($con);
/** @var \Symfony\Component\Finder\SplFileInfo $updateSQLFile */
foreach ($finder as $updateSQLFile) {
if (version_compare($currentVersion, str_replace('.sql', '', $updateSQLFile->getFilename()), '<')) {
$database->insertSql(null, [$updateSQLFile->getPathname()]);
}
}
}
/**
* @return array
*/
public function getHooks()
{
return array(
array(
"type" => TemplateDefinition::BACK_OFFICE,
"code" => "feature-type.form-top",
"title" => array(
"fr_FR" => "Module Feature Type, form haut",
"en_US" => "Module Feature Type, form top",
),
"description" => array(
"fr_FR" => "En haut du formulaire de création et de mise à jour",
"en_US" => "Top of creation form and update",
),
"active" => true
),
array(
"type" => TemplateDefinition::BACK_OFFICE,
"code" => "feature-type.form-bottom",
"title" => array(
"fr_FR" => "Module Feature Type, form bas",
"en_US" => "Module Feature Type, form bottom",
),
"description" => array(
"fr_FR" => "En bas du formulaire de création et de mise à jour",
"en_US" => "Top of creation form and update",
),
"active" => true
),
array(
"type" => TemplateDefinition::BACK_OFFICE,
"code" => "feature-type.configuration-top",
"title" => array(
"fr_FR" => "Module Feature Type, configuration haut",
"en_US" => "Module Feature Type, configuration top",
),
"description" => array(
"fr_FR" => "En haut du la page de configuration du module",
"en_US" => "At the top of the module's configuration page",
),
"active" => true
),
array(
"type" => TemplateDefinition::BACK_OFFICE,
"code" => "feature-type.configuration-bottom",
"title" => array(
"fr_FR" => "Module Feature Type, configuration bas",
"en_US" => "Module Feature Type, configuration bottom",
),
"description" => array(
"fr_FR" => "En bas du la page de configuration du module",
"en_US" => "At the bottom of the module's configuration page",
),
"active" => true
),
array(
"type" => TemplateDefinition::BACK_OFFICE,
"code" => "feature-type.list-action",
"title" => array(
"fr_FR" => "Module Feature Type, list action",
"en_US" => "Module Feature Type, list action",
),
"description" => array(
"fr_FR" => "Action de la liste des types de caractéristiques",
"en_US" => "Action from the list of features types",
),
"active" => true
),
array(
"type" => TemplateDefinition::BACK_OFFICE,
"code" => "feature-type.configuration-js",
"title" => array(
"fr_FR" => "Module Feature Type, configuration js",
"en_US" => "Module Feature Type, configuration js",
),
"description" => array(
"fr_FR" => "JS la page de configuration du module",
"en_US" => "JS of the module's configuration page",
),
"active" => true
)
);
}
/**
* Defines how services are loaded in your modules
*
* @param ServicesConfigurator $servicesConfigurator
*/
public static function configureServices(ServicesConfigurator $servicesConfigurator): void
{
$servicesConfigurator->load(self::getModuleCode().'\\', __DIR__)
->exclude([THELIA_MODULE_DIR . ucfirst(self::getModuleCode()). "/I18n/*"])
->autowire(true)
->autoconfigure(true);
}
}