-
Notifications
You must be signed in to change notification settings - Fork 5
/
AttributeType.php
168 lines (159 loc) · 6.85 KB
/
AttributeType.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
163
164
165
166
167
168
<?php
/*************************************************************************************/
/* This file is part of the module AttributeType */
/* */
/* Copyright (c) OpenStudio */
/* email : [email protected] */
/* 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 AttributeType;
use Propel\Runtime\Connection\ConnectionInterface;
use Symfony\Component\Finder\Finder;
use Thelia\Core\Template\TemplateDefinition;
use Thelia\Module\BaseModule;
use Thelia\Install\Database;
/**
* Class AttributeType
* @package AttributeType
* @author Gilles Bourgeat <[email protected]>
*/
class AttributeType extends BaseModule
{
const MODULE_DOMAIN = "attributetype";
const RESERVED_SLUG = 'id,attribute_id,id_translater,locale,title,chapo,description,postscriptum,position';
const ATTRIBUTE_TYPE_AV_IMAGE_FOLDER = 'attribute_type_av_images';
/** @var string */
const UPDATE_PATH = __DIR__ . DS . 'Config' . DS . 'update';
/**
* @param ConnectionInterface $con
*/
public function postActivation(ConnectionInterface $con = null)
{
if (!$this->getConfigValue('is_initialized', false)) {
$database = new Database($con);
$database->insertSql(null, [__DIR__ . "/Config/thelia.sql", __DIR__ . "/Config/insert.sql"]);
$this->setConfigValue('is_initialized', true);
}
}
/**
* @param $currentVersion
* @param $newVersion
* @param ConnectionInterface|null $con
*/
public function update($currentVersion, $newVersion, ConnectionInterface $con = null)
{
$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" => "attribute-type.form-top",
"title" => array(
"fr_FR" => "Module Attribute Type, form haut",
"en_US" => "Module Attribute 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" => "attribute-type.form-bottom",
"title" => array(
"fr_FR" => "Module Attribute Type, form bas",
"en_US" => "Module Attribute 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" => "attribute-type.configuration-top",
"title" => array(
"fr_FR" => "Module Attribute Type, configuration haut",
"en_US" => "Module Attribute 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" => "attribute-type.configuration-bottom",
"title" => array(
"fr_FR" => "Module Attribute Type, configuration bas",
"en_US" => "Module Attribute 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" => "attribute-type.list-action",
"title" => array(
"fr_FR" => "Module Attribute Type, liste des actiona",
"en_US" => "Module Attribute Type, list action",
),
"description" => array(
"fr_FR" => "Action de la liste des types de déclinaisons",
"en_US" => "Action from the list of attributes types",
),
"active" => true
),
array(
"type" => TemplateDefinition::BACK_OFFICE,
"code" => "attribute-type.list-action",
"title" => array(
"fr_FR" => "Module Attribute Type, list action",
"en_US" => "Module Attribute Type, list action",
),
"description" => array(
"fr_FR" => "Action de la liste des dates",
"en_US" => "Action from the list of dates",
),
"active" => true
),
array(
"type" => TemplateDefinition::BACK_OFFICE,
"code" => "attribute-type.configuration-js",
"title" => array(
"fr_FR" => "Module Attribute Type, configuration js",
"en_US" => "Module Attribute 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
)
);
}
}