-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathplugin.xml
257 lines (256 loc) · 10.3 KB
/
plugin.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.newWizards">
<category
name="%categories.magento"
id="pl.mamooth.eclipse.magento">
</category>
<wizard
canFinishEarly="false"
category="pl.mamooth.eclipse.magento"
class="pl.mamooth.eclipse.magento.wizards.module.NewModuleWizard"
finalPerspective="pl.mamooth.eclipse.magento.perspectives.MagentoPerspective"
hasPages="true"
icon="icons/magento.png"
id="pl.mamooth.eclipse.magento.wizards.module"
name="%wizards.new.module"
preferredPerspectives="pl.mamooth.eclipse.magento.perspectives.MagentoPerspective"
project="true">
</wizard>
<wizard
category="pl.mamooth.eclipse.magento"
class="pl.mamooth.eclipse.magento.wizards.block.NewBlockWizard"
finalPerspective="pl.mamooth.eclipse.magento.perspectives.MagentoPerspective"
icon="icons/magento.png"
id="pl.mamooth.eclipse.magento.wizards.block"
name="%wizards.new.block"
preferredPerspectives="pl.mamooth.eclipse.magento.perspectives.MagentoPerspective"
project="false">
</wizard>
<wizard
category="pl.mamooth.eclipse.magento"
class="pl.mamooth.eclipse.magento.wizards.helper.NewHelperWizard"
finalPerspective="pl.mamooth.eclipse.magento.perspectives.MagentoPerspective"
icon="icons/magento.png"
id="pl.mamooth.eclipse.magento.wizards.helper"
name="%wizards.new.helper"
preferredPerspectives="pl.mamooth.eclipse.magento.perspectives.MagentoPerspective"
project="false">
</wizard>
<wizard
category="pl.mamooth.eclipse.magento"
class="pl.mamooth.eclipse.magento.wizards.modman.NewModmanWizard"
finalPerspective="pl.mamooth.eclipse.magento.perspectives.MagentoPerspective"
icon="icons/magento.png"
id="pl.mamooth.eclipse.magento.wizards.modman"
name="%wizards.new.modman"
preferredPerspectives="pl.mamooth.eclipse.magento.perspectives.MagentoPerspective"
project="false">
</wizard>
<wizard
category="pl.mamooth.eclipse.magento"
class="pl.mamooth.eclipse.magento.wizards.controller.NewControllerWizard"
finalPerspective="pl.mamooth.eclipse.magento.perspectives.MagentoPerspective"
icon="icons/magento.png"
id="pl.mamooth.eclipse.magento.wizards.controller"
name="%wizards.new.controller"
project="false">
</wizard>
<wizard
category="pl.mamooth.eclipse.magento"
class="pl.mamooth.eclipse.magento.wizards.cron.NewCronWizard"
finalPerspective="pl.mamooth.eclipse.magento.perspectives.MagentoPerspective"
icon="icons/magento.png"
id="pl.mamooth.eclipse.magento.wizards.cron"
name="%wizards.new.cron"
project="false">
</wizard>
<wizard
category="pl.mamooth.eclipse.magento"
class="pl.mamooth.eclipse.magento.wizards.model.NewModelWizard"
finalPerspective="pl.mamooth.eclipse.magento.perspectives.MagentoPerspective"
icon="icons/magento.png"
id="pl.mamooth.eclipse.magento.wizards.model"
name="%wizards.new.model"
preferredPerspectives="pl.mamooth.eclipse.magento.perspectives.MagentoPerspective"
project="false">
</wizard>
<wizard
category="pl.mamooth.eclipse.magento"
class="pl.mamooth.eclipse.magento.wizards.event.NewEventWizard"
finalPerspective="pl.mamooth.eclipse.magento.perspectives.MagentoPerspective"
icon="icons/magento.png"
id="pl.mamooth.eclipse.magento.wizards.event"
name="%wizards.new.event"
preferredPerspectives="pl.mamooth.eclipse.magento.perspectives.MagentoPerspective"
project="false">
</wizard>
<wizard
category="pl.mamooth.eclipse.magento"
class="pl.mamooth.eclipse.magento.wizards.translation.TranslationWizard"
finalPerspective="pl.mamooth.eclipse.magento.perspectives.MagentoPerspective"
icon="icons/magento.png"
id="pl.mamooth.eclipse.magento.wizards.translation"
name="%wizards.new.translation"
preferredPerspectives="pl.mamooth.eclipse.magento.perspectives.MagentoPerspective"
project="false">
</wizard>
<wizard
category="pl.mamooth.eclipse.magento"
class="pl.mamooth.eclipse.magento.wizards.storeconfig.NewStoreConfigWizard"
icon="icons/magento.png"
id="pl.mamooth.eclipse.magento.wizards.storeconfig"
name="%wizards.new.storeconfig">
</wizard>
</extension>
<extension
point="org.eclipse.ui.perspectives">
<perspective
class="pl.mamooth.eclipse.magento.perspectives.MagentoPerspective"
icon="icons/magento.png"
id="pl.mamooth.eclipse.magento.perspectives.MagentoPerspective"
name="%perspective.magento">
</perspective>
</extension>
<extension
point="org.eclipse.ui.decorators">
<decorator
adaptable="true"
icon="icons/magento_project_decorator.png"
id="pl.mamooth.eclipse.magento.decorator.project"
label="%decorator.project.magento"
lightweight="true"
location="TOP_LEFT"
state="true">
<description>
Decoration of Magento project
</description>
<enablement>
<and>
<objectClass name="org.eclipse.core.resources.IProject"/>
<objectState
name="projectNature"
value="pl.mamooth.eclipse.magento.Nature"/>
</and>
</enablement>
</decorator>
</extension>
<extension
id="pl.mamooth.eclipse.magento.Nature"
name="Magento Nature"
point="org.eclipse.core.resources.natures">
<runtime>
<run
class="pl.mamooth.eclipse.magento.Nature">
</run>
</runtime>
</extension>
<extension
point="org.eclipse.ui.commands">
<command
defaultHandler="pl.mamooth.eclipse.magento.handlers.InsertModelHandler"
id="pl.mamooth.eclipse.magento.command.InsertModel"
name="%commands.insert.model">
</command>
<command
defaultHandler="pl.mamooth.eclipse.magento.handlers.InsertHelperHandler"
id="pl.mamooth.eclipse.magento.command.InsertHelper"
name="%commands.insert.helper">
</command>
<command
defaultHandler="pl.mamooth.eclipse.magento.handlers.InsertStoreConfigHandler"
id="pl.mamooth.eclipse.magento.command.InsertStoreConfig"
name="%commands.insert.storeConfig">
</command>
<command
defaultHandler="pl.mamooth.eclipse.magento.handlers.InsertTranslationHandler"
id="pl.mamooth.eclipse.magento.command.InsertTranslation"
name="%commands.insert.translation">
</command>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
allPopups="false"
locationURI="popup:org.eclipse.php.core.phpsource.source.EditorContext">
<menu
icon="icons/magento.png"
id="pl.mamooth.eclipse.magento.menus.insert"
label="%menus.insert">
<command
commandId="pl.mamooth.eclipse.magento.command.InsertModel"
label="%commands.insert.model"
style="push">
</command>
<command
commandId="pl.mamooth.eclipse.magento.command.InsertHelper"
label="%commands.insert.helper"
style="push">
</command>
<command
commandId="pl.mamooth.eclipse.magento.command.InsertStoreConfig"
label="%commands.insert.storeConfig"
style="push">
</command>
<command
commandId="pl.mamooth.eclipse.magento.command.InsertTranslation"
label="%commands.insert.translation"
style="push">
</command>
</menu>
</menuContribution>
</extension>
<extension
point="org.eclipse.ui.bindings">
<key
commandId="pl.mamooth.eclipse.magento.command.InsertModel"
contextId="org.eclipse.ui.contexts.window"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="M3+M">
</key>
<key
commandId="pl.mamooth.eclipse.magento.command.InsertHelper"
contextId="org.eclipse.ui.contexts.window"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="M3+H">
</key>
<key
commandId="pl.mamooth.eclipse.magento.command.InsertStoreConfig"
contextId="org.eclipse.ui.contexts.window"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="M3+C">
</key>
<key
commandId="pl.mamooth.eclipse.magento.command.InsertTranslation"
contextId="org.eclipse.ui.contexts.window"
schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
sequence="M3+T">
</key>
</extension>
<extension
point="org.eclipse.help.contexts">
<contexts
file="contexts.xml"
plugin="pl.mamooth.eclipse.magento">
</contexts>
</extension>
<!-- <extension
point="org.eclipse.ui.importWizards">
<category
id="pl.mamooth.eclipse.magento"
name="%categories.magento">
</category>
<wizard
category="pl.mamooth.eclipse.magento"
class="pl.mamooth.eclipse.magento.importWizards.module.ModuleImportWizard"
icon="icons/magento.png"
id="pl.mamooth.eclipse.magento.importWizards.module.ModuleImportWizard"
name="%import.module">
<description>
%import.module.description
</description>
</wizard>
</extension> -->
</plugin>