-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCRDynamicFields.sopm
297 lines (256 loc) · 9.51 KB
/
CRDynamicFields.sopm
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
<?xml version="1.0" encoding="utf-8" ?>
<otrs_package version="1.0">
<Name>CRDynamicFields</Name>
<Version>0.0.1</Version>
<Framework>3.3.x</Framework>
<Vendor>Carlos Rodriguez</Vendor>
<URL>http://https://github.com/carlosfrodriguez</URL>
<License>GNU AFFERO GENERAL PUBLIC LICENSE Version 3, November 2007</License>
<Description Lang="en">The CR Dynamic Fields Package.</Description>
<Filelist>
<!--
<File Permission="644" Location="doc/en/CRDynamicFields.txt"/>
-->
<File Permission="644" Location="Kernel/Config/Files/CRDynamicFields.xml"/>
<File Permission="644" Location="Kernel/Modules/AdminCRDynamicFieldRadioButton.pm"/>
<File Permission="644" Location="Kernel/Output/HTML/Standard/AdminCRDynamicFieldRadioButton.dtl"/>
<File Permission="644" Location="Kernel/System/DynamicField/Driver/CRRadioButton.pm"/>
</Filelist>
<!--
<CodeInstall Type="post"><![CDATA[
# define function name
my $FunctionName = 'CodeInstall';
# create the package name
my $CodeModule = 'var::packagesetup::' . $Param{Structure}->{Name}->{Content};
# load the module
if ( $Self->{MainObject}->Require($CodeModule) ) {
# create new instance
my $CodeObject = $CodeModule->new( %{$Self} );
if ($CodeObject) {
# start method
if ( !$CodeObject->$FunctionName(%{$Self}) ) {
$Self->{LogObject}->Log(
Priority => 'error',
Message => "Could not call method $FunctionName() on $CodeModule.pm."
);
}
}
# error handling
else {
$Self->{LogObject}->Log(
Priority => 'error',
Message => "Could not call method new() on $CodeModule.pm."
);
}
}
]]></CodeInstall>
<CodeReinstall Type="post"><![CDATA[
# define function name
my $FunctionName = 'CodeReinstall';
# create the package name
my $CodeModule = 'var::packagesetup::' . $Param{Structure}->{Name}->{Content};
# load the module
if ( $Self->{MainObject}->Require($CodeModule) ) {
# create new instance
my $CodeObject = $CodeModule->new( %{$Self} );
if ($CodeObject) {
# start method
if ( !$CodeObject->$FunctionName(%{$Self}) ) {
$Self->{LogObject}->Log(
Priority => 'error',
Message => "Could not call method $FunctionName() on $CodeModule.pm."
);
}
}
# error handling
else {
$Self->{LogObject}->Log(
Priority => 'error',
Message => "Could not call method new() on $CodeModule.pm."
);
}
}
]]></CodeReinstall>
<CodeUpgrade Type="post"><![CDATA[
# define function name
my $FunctionName = 'CodeUpgrade';
# create the package name
my $CodeModule = 'var::packagesetup::' . $Param{Structure}->{Name}->{Content};
# The code module has just recently been copied to it's location in the file system.
# In a persistent Perl environment an old version of the module might still be loaded,
# as watchdogs like Apache2::Reload haven't had a chance to reload it.
# So we need to make sure that the new version is being loaded.
# Kernel::System::Main::Require() checks the relative file path, so we need to remove that from %INC.
# This is only needed in persistent Perl environment, but does no harm in a CGI environment.
my $CodeModulePath = $CodeModule;
$CodeModulePath =~ s/::/\//g;
$CodeModulePath .= '.pm';
delete $INC{$CodeModulePath};
# load the module
if ( $Self->{MainObject}->Require($CodeModule) ) {
# create new instance
my $CodeObject = $CodeModule->new( %{$Self} );
if ($CodeObject) {
# start method
if ( !$CodeObject->$FunctionName(%{$Self}) ) {
$Self->{LogObject}->Log(
Priority => 'error',
Message => "Could not call method $FunctionName() on $CodeModule.pm."
);
}
}
# error handling
else {
$Self->{LogObject}->Log(
Priority => 'error',
Message => "Could not call method new() on $CodeModule.pm."
);
}
}
]]></CodeUpgrade>
<CodeUpgrade Type="post" Version="1.0.25"><![CDATA[
# define function name
my $FunctionName = 'CodeUpgradeFromLowerThan_1_0_25';
# create the package name
my $CodeModule = 'var::packagesetup::' . $Param{Structure}->{Name}->{Content};
# load the module
if ( $Self->{MainObject}->Require($CodeModule) ) {
# create new instance
my $CodeObject = $CodeModule->new( %{$Self} );
if ($CodeObject) {
# start methode
if ( !$CodeObject->$FunctionName(%{$Self}) ) {
$Self->{LogObject}->Log(
Priority => 'error',
Message => "Could not call method $FunctionName() on $CodeModule.pm."
);
}
}
# error handling
else {
$Self->{LogObject}->Log(
Priority => 'error',
Message => "Could not call method new() on $CodeModule.pm."
);
}
}
]]></CodeUpgrade>
<CodeUninstall Type="pre"><![CDATA[
# define function name
my $FunctionName = 'CodeUninstall';
# create the package name
my $CodeModule = 'var::packagesetup::' . $Param{Structure}->{Name}->{Content};
# load the module
if ( $Self->{MainObject}->Require($CodeModule) ) {
# create new instance
my $CodeObject = $CodeModule->new( %{$Self} );
if ($CodeObject) {
# start methode
if ( !$CodeObject->$FunctionName(%{$Self}) ) {
$Self->{LogObject}->Log(
Priority => 'error',
Message => "Could not call method $FunctionName() on $CodeModule.pm.",
);
}
}
# error handling
else {
$Self->{LogObject}->Log(
Priority => 'error',
Message => "Could not call method new() on $CodeModule.pm.",
);
}
}
]]></CodeUninstall>
-->
<IntroInstall Type="pre" Title="Install Information" Lang="en"><![CDATA[
<br/>
<strong>WELCOME</strong>
<br/>
<br/>
You are about to install the package CRDynamicFields.<br/>
<br/>
<br/>
((enjoy))<br/>
<br/>
]]></IntroInstall>
<IntroInstall Type="pre" Title="Installation Information" Lang="de"><![CDATA[
<br/>
<strong>WILLKOMMEN</strong>
<br/>
<br/>
Sie sind im Begriff das Paket CRDynamicFields zu installieren.<br/>
<br/>
<br/>
((enjoy))<br/>
<br/>
]]></IntroInstall>
<IntroInstall Type="pre" Title="Install Information" Lang="es"><![CDATA[
<br/>
<strong>BIENVENIDO</strong>
<br/>
<br/>
Usted está a punto de instalar el paquete CRDynamicFields.<br/>
<br/>
<br/>
((enjoy))<br/>
<br/>
]]></IntroInstall>
<IntroUpgrade Type="pre" Title="Upgrade Information" Lang="en"><![CDATA[
<br/>
<strong>WELCOME</strong>
<br/>
<br/>
You are about to upgrade the package CRDynamicFields.<br/>
<br/>
<br/>
((enjoy))<br/>
<br/>
]]></IntroUpgrade>
<IntroUpgrade Type="pre" Title="Upgrade Information" Lang="de"><![CDATA[
<br/>
<strong>WILLKOMMEN</strong>
<br/>
<br/>
Sie sind im Begriff das Paket CRDynamicFields zu aktualisieren.<br/>
<br/>
<br/>
((enjoy))<br/>
<br/>
]]></IntroUpgrade>
<IntroUpgrade Type="pre" Title="Upgrade Information" Lang="es"><![CDATA[
<br/>
<strong>BIENVENIDO</strong>
<br/>
<br/>
Usted está apunto de actualizar el paquete CRDynamicFields.<br/>
<br/>
<br/>
((enjoy))<br/>
<br/>
]]></IntroUpgrade>
<IntroUninstall Type="pre" Title="Uninstallation Information" Lang="en"><![CDATA[
<br/>
<strong>ATTENTION</strong>
<br/>
<br/>
Before uninstall the package please make sure that all dynamic fields from a type
defined in this package are removed from the system.
<br/>
<br/>
((enjoy))<br/>
<br/>
]]></IntroUninstall>
<IntroUninstall Type="pre" Title="Uninstallation Information" Lang="es"><![CDATA[
<br/>
<strong>ATENCIÓN</strong>
<br/>
<br/>
Antes de desinstalar este paquete por favor asegúrese que todos los campos dinámicos de
algún tipo definido en este paquete, sean removidos del sistema.
<br/>
<br/>
((enjoy))<br/>
<br/>
]]></IntroUninstall>
</otrs_package>