-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathumc_source.xml
6678 lines (6518 loc) · 275 KB
/
umc_source.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
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
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<!--
/**
* Ultimate_ModuleCreator extension
*
* NOTICE OF LICENSE
*
* This source file is subject to the MIT License
* that is bundled with this package in the file LICENSE_UMC.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/mit-license.php
*
* @category Ultimate
* @package Ultimate_ModuleCreator
* @copyright Copyright (c) 2014
* @license http://opensource.org/licenses/mit-license.php MIT License
* @author Marius Strajeru <ultimate.module.creator@gmail.com>
*/
-->
<config>
<files>
<declaration_file translate="title description condition" module="modulecreator">
<title>Module declaration xml</title>
<description>The module declaration file.</description>
<condition>This is always generated.</condition>
<scope>global</scope>
<filetype>xml</filetype>
<source>app/etc/modules/Namespace_Module/</source>
<destination>app/etc/modules/{{Namespace}}_{{Module}}.xml</destination>
<code>
<content>
<name>010_content</name>
<sort_order>10</sort_order>
</content>
</code>
</declaration_file>
<block_rss translate="title description condition" module="modulecreator">
<title>Module RSS block.</title>
<description>A block added to the RSS feed list</description>
<condition>Generated if at least an entity has RSS enabled.</condition>
<scope>global</scope>
<filetype>php</filetype>
<depend>
<rss/>
</depend>
<source>app/code/Block/Rss/</source>
<destination>app/code/{{codepool}}/{{Namespace}}/{{Module}}/Block/Rss.php</destination>
<code>
<content>
<name>010_content</name>
<sort_order>10</sort_order>
</content>
</code>
</block_rss>
<entity_admin_block translate="title description condition" module="modulecreator">
<title>Entity admin block.</title>
<description>This is the main admin block for the entities. The grid container</description>
<condition>Is generated if the entity does not behave as tree</condition>
<scope>entity</scope>
<filetype>php</filetype>
<depend>
<not_is_tree/>
</depend>
<source>app/code/Block/Adminhtml/Entity/</source>
<destination>app/code/{{codepool}}/{{Namespace}}/{{Module}}/Block/Adminhtml/{{Entity}}.php</destination>
<code>
<top>
<name>010_top</name>
<sort_order>10</sort_order>
</top>
<eav>
<name>020_eav</name>
<depend>
<is_eav />
</depend>
<sort_order>20</sort_order>
</eav>
<footer>
<name>030_footer</name>
<sort_order>30</sort_order>
</footer>
</code>
</entity_admin_block>
<entity_admin_edit_block translate="title description condition" module="modulecreator">
<title>Entity admin edit block.</title>
<description>This is the entity admin edit block: form container</description>
<condition>This is always generated.</condition>
<scope>entity</scope>
<filetype>php</filetype>
<source>app/code/Block/Adminhtml/Entity/Edit/</source>
<destination>app/code/{{codepool}}/{{Namespace}}/{{Module}}/Block/Adminhtml/{{Entity}}/Edit.php</destination>
<code>
<top>
<name>010_top</name>
<sort_order>10</sort_order>
</top>
<tree>
<name>020_tree</name>
<depend>
<is_tree/>
</depend>
<sort_order>20</sort_order>
</tree>
<not_tree>
<name>030_not_tree</name>
<depend>
<not_is_tree/>
</depend>
<sort_order>30</sort_order>
</not_tree>
</code>
</entity_admin_edit_block>
<entity_admin_edit_form_block translate="title description condition" module="modulecreator">
<title>Entity admin edit form block.</title>
<description>This is the entity admin edit form block</description>
<condition>This is always generated.</condition>
<scope>entity</scope>
<filetype>php</filetype>
<source>app/code/Block/Adminhtml/Entity/Edit/Form/</source>
<destination>app/code/{{codepool}}/{{Namespace}}/{{Module}}/Block/Adminhtml/{{Entity}}/Edit/Form.php</destination>
<code>
<top>
<name>010_top</name>
<sort_order>10</sort_order>
</top>
<prepare_form>
<name>020_prepare_form</name>
<depend>
<not_is_tree/>
<is_flat />
</depend>
<sort_order>20</sort_order>
</prepare_form>
<prepare_form_eav>
<name>025_prepare_form_eav</name>
<depend>
<not_is_tree/>
<is_eav />
</depend>
<sort_order>25</sort_order>
</prepare_form_eav>
<tree_top>
<name>030_tree_top</name>
<depend>
<is_tree/>
</depend>
<sort_order>30</sort_order>
</tree_top>
<product_relation>
<name>040_product_relation</name>
<depend>
<is_tree/>
<link_product/>
</depend>
<sort_order>40</sort_order>
</product_relation>
<entity_relation>
<name>050_entity_relation</name>
<scope>siblings</scope>
<depend>
<is_tree/>
</depend>
<sort_order>40</sort_order>
</entity_relation>
<footer>
<name>060_footer</name>
<sort_order>60</sort_order>
</footer>
</code>
</entity_admin_edit_form_block>
<entity_admin_abstract_block translate="title description condition" module="modulecreator">
<title>Entity admin abstract block.</title>
<description>This is a block used as parent for different tree behaving entities blocks</description>
<condition>This is genereted for entities that behave as tree.</condition>
<depend>
<is_tree/>
</depend>
<scope>entity</scope>
<filetype>php</filetype>
<source>app/code/Block/Adminhtml/Entity/Abstract/</source>
<destination>app/code/{{codepool}}/{{Namespace}}/{{Module}}/Block/Adminhtml/{{Entity}}/Abstract.php</destination>
<code>
<content>
<name>010_content</name>
<sort_order>10</sort_order>
</content>
</code>
</entity_admin_abstract_block>
<entity_file_helper_block translate="title description condition" module="modulecreator">
<title>Entity form file renderer.</title>
<description>This is the rendered for file fields.</description>
<condition>It is generated for entities that have at least a file field</condition>
<source>app/code/Block/Adminhtml/Entity/Helper/File/</source>
<destination>app/code/{{codepool}}/{{Namespace}}/{{Module}}/Block/Adminhtml/{{Entity}}/Helper/File.php</destination>
<scope>entity</scope>
<filetype>php</filetype>
<depend>
<has_file/>
</depend>
<code>
<content>
<name>010_content</name>
<sort_order>10</sort_order>
</content>
</code>
</entity_file_helper_block>
<entity_tree_block translate="title description condition" module="modulecreator">
<title>Tree block.</title>
<description>This is the rendered for file fields.</description>
<condition>It is generated for entities that have at least a file field</condition>
<source>app/code/Block/Adminhtml/Entity/Tree/</source>
<destination>app/code/{{codepool}}/{{Namespace}}/{{Module}}/Block/Adminhtml/{{Entity}}/Tree.php</destination>
<scope>entity</scope>
<filetype>php</filetype>
<depend>
<is_tree/>
</depend>
<code>
<top>
<name>010_top</name>
<sort_order>10</sort_order>
</top>
<store_switcher>
<name>020_store_switcher</name>
<depend>
<is_eav />
</depend>
<sort_order>20</sort_order>
</store_switcher>
<content>
<name>030_content</name>
<sort_order>30</sort_order>
</content>
<eav>
<name>040_eav</name>
<depend>
<is_eav />
</depend>
<sort_order>40</sort_order>
</eav>
<methods>
<name>050_methods</name>
<sort_order>50</sort_order>
</methods>
<store_switcher_block>
<name>060_store_switcher_block</name>
<depend>
<is_eav />
</depend>
<sort_order>60</sort_order>
</store_switcher_block>
<footer>
<name>070_footer</name>
<sort_order>70</sort_order>
</footer>
</code>
</entity_tree_block>
<entity_widget_chooser_block translate="title description condition" module="modulecreator">
<title>Entity widget chooser .</title>
<description>This helps you choose your widget entity.</description>
<condition>It is generated for entities that have widgets enabled</condition>
<source>app/code/Block/Adminhtml/Entity/Widget/Chooser/</source>
<destination>app/code/{{codepool}}/{{Namespace}}/{{Module}}/Block/Adminhtml/{{Entity}}/Widget/Chooser.php</destination>
<scope>entity</scope>
<filetype>php</filetype>
<depend>
<widget/>
</depend>
<code>
<top>
<name>010_top</name>
<sort_order>10</sort_order>
</top>
<not_tree>
<name>020_not_tree</name>
<depend>
<not_is_tree/>
</depend>
<sort_order>20</sort_order>
</not_tree>
<not_tree_eav>
<name>030_not_tree_eav</name>
<depend>
<not_is_tree/>
<is_eav />
</depend>
<sort_order>30</sort_order>
</not_tree_eav>
<not_tree_content>
<name>040_not_tree_content</name>
<depend>
<not_is_tree/>
</depend>
<sort_order>40</sort_order>
</not_tree_content>
<not_tree_store>
<name>050_not_tree_store</name>
<depend>
<not_is_tree/>
<store />
</depend>
<sort_order>50</sort_order>
</not_tree_store>
<not_tree_footer>
<name>060_not_tree_footer</name>
<depend>
<not_is_tree/>
</depend>
<sort_order>60</sort_order>
</not_tree_footer>
<not_tree_flat>
<name>070_not_tree_flat</name>
<depend>
<not_is_tree />
<is_flat />
</depend>
<sort_order>70</sort_order>
</not_tree_flat>
<tree>
<name>080_tree</name>
<sort_order>80</sort_order>
<depend>
<is_tree/>
</depend>
</tree>
<footer>
<name>090_footer</name>
<sort_order>90</sort_order>
</footer>
</code>
</entity_widget_chooser_block>
<entity_product_list_block>
<title>Entity product list block</title>
<description>Block that lists associated products on entity page.</description>
<condition>It is generated for entities that are related to products.</condition>
<source>app/code/Block/Entity/Catalog/Product/List/</source>
<destination>app/code/{{codepool}}/{{Namespace}}/{{Module}}/Block/{{Entity}}/Catalog/Product/List.php</destination>
<scope>entity</scope>
<filetype>php</filetype>
<depend>
<show_products/>
</depend>
<code>
<content>
<name>010_content</name>
<sort_order>10</sort_order>
</content>
</code>
</entity_product_list_block>
<entity_category_list_block>
<title>Entity category list block</title>
<description>Block that lists associated categories on entity page.</description>
<condition>It is generated for entities that are related to categories.</condition>
<source>app/code/Block/Entity/Catalog/Category/List/</source>
<destination>app/code/{{codepool}}/{{Namespace}}/{{Module}}/Block/{{Entity}}/Catalog/Category/List.php</destination>
<scope>entity</scope>
<filetype>php</filetype>
<depend>
<show_category />
</depend>
<code>
<content>
<name>010_content</name>
<sort_order>10</sort_order>
</content>
</code>
</entity_category_list_block>
<product_entity_list_block translate="title description condition" module="modulecreator">
<title>Entity list on product page</title>
<description>This block is used to show the entities related to the product on the product list.</description>
<condition>It is generated for entities are linked with products and are set to appear in the product list.</condition>
<source>app/code/Block/Catalog/Product/List/Entity/</source>
<destination>app/code/{{codepool}}/{{Namespace}}/{{Module}}/Block/Catalog/Product/List/{{Entity}}.php</destination>
<scope>entity</scope>
<filetype>php</filetype>
<depend>
<show_on_product/>
</depend>
<code>
<top>
<name>010_top</name>
<sort_order>10</sort_order>
</top>
<store>
<name>020_store</name>
<depend>
<store />
</depend>
<sort_order>20</sort_order>
</store>
<eav>
<name>030_eav</name>
<depend>
<is_eav />
</depend>
<sort_order>30</sort_order>
</eav>
<not_eav>
<name>040_not_eav</name>
<depend>
<is_flat />
</depend>
<sort_order>30</sort_order>
</not_eav>
<footer>
<name>050_footer</name>
<sort_order>50</sort_order>
</footer>
</code>
</product_entity_list_block>
<category_entity_list_block translate="title description condition" module="modulecreator">
<title>Entity list on category page</title>
<description>This block is used to show the entities related to the category on the category list.</description>
<condition>It is generated for entities are linked with products and are set to appear in the product list.</condition>
<source>app/code/Block/Catalog/Category/List/Entity/</source>
<destination>app/code/{{codepool}}/{{Namespace}}/{{Module}}/Block/Catalog/Category/List/{{Entity}}.php</destination>
<scope>entity</scope>
<filetype>php</filetype>
<depend>
<show_on_category/>
</depend>
<code>
<top>
<name>010_top</name>
<sort_order>10</sort_order>
</top>
<store>
<name>020_store</name>
<depend>
<store />
</depend>
<sort_order>20</sort_order>
</store>
<eav>
<name>030_eav</name>
<depend>
<is_eav />
</depend>
<sort_order>30</sort_order>
</eav>
<not_eav>
<name>040_not_eav</name>
<depend>
<is_flat />
</depend>
<sort_order>30</sort_order>
</not_eav>
<footer>
<name>050_footer</name>
<sort_order>50</sort_order>
</footer>
</code>
</category_entity_list_block>
<entity_list_block translate="title description condition" module="modulecreator">
<title>Entity list page</title>
<description>This block lists your entities.</description>
<condition>It is generated for entities that have frontend list enabled</condition>
<source>app/code/Block/Entity/List/</source>
<destination>app/code/{{codepool}}/{{Namespace}}/{{Module}}/Block/{{Entity}}/List.php</destination>
<scope>entity</scope>
<filetype>php</filetype>
<depend>
<can_create_list_block/>
</depend>
<code>
<top>
<name>010_top</name>
<sort_order>10</sort_order>
</top>
<stores>
<name>020_stores</name>
<depend>
<store/>
</depend>
<sort_order>20</sort_order>
</stores>
<attributes>
<name>030_attributes</name>
<depend>
<is_eav/>
</depend>
<sort_order>30</sort_order>
</attributes>
<status>
<name>040_status</name>
<sort_order>40</sort_order>
<depend>
<is_flat/>
</depend>
</status>
<not_tree>
<name>050_not_tree</name>
<depend>
<not_is_tree/>
</depend>
<sort_order>50</sort_order>
</not_tree>
<tree_flat>
<name>060_tree_flat</name>
<depend>
<is_tree/>
<is_flat />
</depend>
<sort_order>60</sort_order>
</tree_flat>
<tree_eav>
<name>070_tree_eav</name>
<depend>
<is_tree/>
<is_eav />
</depend>
<sort_order>70</sort_order>
</tree_eav>
<footer>
<name>080_footer</name>
<sort_order>80</sort_order>
</footer>
</code>
</entity_list_block>
<entity_image_helper_block translate="title description condition" module="modulecreator">
<title>Entity form image renderer.</title>
<description>This is the rendered for image fields.</description>
<condition>It is generated for entities that have at least an image field</condition>
<source>app/code/Block/Adminhtml/Entity/Helper/Image/</source>
<destination>app/code/{{codepool}}/{{Namespace}}/{{Module}}/Block/Adminhtml/{{Entity}}/Helper/Image.php</destination>
<scope>entity</scope>
<filetype>php</filetype>
<depend>
<has_image/>
</depend>
<code>
<content>
<name>010_content</name>
<sort_order>10</sort_order>
</content>
</code>
</entity_image_helper_block>
<entity_rss_block translate="title description condition" module="modulecreator">
<title>Entity RSS block.</title>
<description>This block handles the rss generation for an entity.</description>
<condition>It is generated for entities that have RSS enabled</condition>
<scope>entity</scope>
<filetype>php</filetype>
<depend>
<rss/>
</depend>
<source>app/code/Block/Entity/Rss/</source>
<destination>app/code/{{codepool}}/{{Namespace}}/{{Module}}/Block/{{Entity}}/Rss.php</destination>
<code>
<top>
<name>010_top</name>
<sort_order>10</sort_order>
</top>
<stores>
<name>020_stores</name>
<depend>
<store/>
</depend>
<sort_order>20</sort_order>
</stores>
<eav>
<name>025_eav</name>
<depend>
<is_eav />
</depend>
<sort_order>25</sort_order>
</eav>
<content>
<name>030_content</name>
<sort_order>30</sort_order>
</content>
<tree>
<name>035_tree</name>
<depend>
<is_tree />
</depend>
<sort_order>35</sort_order>
</tree>
<attributes>
<name>040_attributes</name>
<scope>attribute</scope>
<depend>
<rss/>
</depend>
<sort_order>40</sort_order>
</attributes>
<footer>
<name>050_footer</name>
<sort_order>50</sort_order>
</footer>
</code>
</entity_rss_block>
<entity_sibling_list_block translate="title description condition" module="modulecreator">
<title>Entity sibling list block</title>
<description>This block lists the siblings of an entity</description>
<condition>This is generated for entities that have siblings</condition>
<scope>siblings</scope>
<filetype>php</filetype>
<depend>
<show_frontend_relation_siblings/>
</depend>
<source>app/code/Block/Entity/Sibling/List/</source>
<destination>app/code/{{codepool}}/{{Namespace}}/{{Module}}/Block/{{Entity}}/{{Sibling}}/List.php</destination>
<code>
<content>
<name>010_content</name>
<sort_order>10</sort_order>
</content>
</code>
</entity_sibling_list_block>
<entity_widget_link_block translate="title description condition" module="modulecreator">
<title>Entity link widget block</title>
<description>This block handles the entity link widget.</description>
<condition>Is generated for entities that have widgets enabled</condition>
<scope>entity</scope>
<filetype>php</filetype>
<depend>
<widget/>
</depend>
<source>app/code/Block/Entity/Widget/Link/</source>
<destination>app/code/{{codepool}}/{{Namespace}}/{{Module}}/Block/{{Entity}}/Widget/Link.php</destination>
<code>
<content>
<name>010_content</name>
<sort_order>10</sort_order>
</content>
</code>
</entity_widget_link_block>
<entity_widget_view_block translate="title description condition" module="modulecreator">
<title>Entity view widget block</title>
<description>This block handles the entity view widget.</description>
<condition>Is generated for entities that have widgets enabled</condition>
<scope>entity</scope>
<filetype>php</filetype>
<depend>
<widget/>
</depend>
<source>app/code/Block/Entity/Widget/View/</source>
<destination>app/code/{{codepool}}/{{Namespace}}/{{Module}}/Block/{{Entity}}/Widget/View.php</destination>
<code>
<content>
<name>010_content</name>
<sort_order>10</sort_order>
</content>
<not_tree>
<name>020_not_tree</name>
<depend>
<not_is_tree />
</depend>
<sort_order>20</sort_order>
</not_tree>
<tree>
<name>030_tree</name>
<depend>
<is_tree />
</depend>
<sort_order>30</sort_order>
</tree>
<footer>
<name>040_footer</name>
<sort_order>40</sort_order>
</footer>
</code>
</entity_widget_view_block>
<entity_widget_subtree_block translate="title description condition" module="modulecreator">
<title>Entity subtree widget block</title>
<description>This block handles the subtree view widget.</description>
<condition>Is generated for entities that have widgets enabled and behave as tree</condition>
<scope>entity</scope>
<filetype>php</filetype>
<depend>
<widget/>
<is_tree/>
</depend>
<source>app/code/Block/Entity/Widget/Subtree/</source>
<destination>app/code/{{codepool}}/{{Namespace}}/{{Module}}/Block/{{Entity}}/Widget/Subtree.php</destination>
<code>
<content>
<name>010_content</name>
<sort_order>10</sort_order>
</content>
</code>
</entity_widget_subtree_block>
<product_entity_tab translate="title description condition" module="modulecreator">
<title>Entity tab on product form</title>
<description>This is the block for the entity tab on the product add/edit form</description>
<condition>s generated for any entity that is related many to many with products</condition>
<scope>entity</scope>
<filetype>php</filetype>
<depend>
<link_product/>
</depend>
<source>app/code/Block/Adminhtml/Catalog/Product/Edit/Tab/Entity/</source>
<destination>app/code/{{codepool}}/{{Namespace}}/{{Module}}/Block/Adminhtml/Catalog/Product/Edit/Tab/{{Entity}}.php</destination>
<code>
<top>
<name>010_top</name>
<sort_order>10</sort_order>
</top>
<not_tree>
<name>020_not_tree</name>
<sort_order>20</sort_order>
<depend>
<not_is_tree/>
</depend>
</not_tree>
<tree>
<name>030_tree</name>
<sort_order>30</sort_order>
<depend>
<is_tree/>
</depend>
</tree>
<footer>
<name>040_footer</name>
<sort_order>40</sort_order>
</footer>
</code>
</product_entity_tab>
<category_entity_tab translate="title description condition" module="modulecreator">
<title>Entity tab on product form</title>
<description>This is the block for the entity tab on the category add/edit form</description>
<condition>s generated for any entity that is related many to many with categories</condition>
<scope>entity</scope>
<filetype>php</filetype>
<depend>
<link_category/>
</depend>
<source>app/code/Block/Adminhtml/Catalog/Category/Tab/Entity/</source>
<destination>app/code/{{codepool}}/{{Namespace}}/{{Module}}/Block/Adminhtml/Catalog/Category/Tab/{{Entity}}.php</destination>
<code>
<tree>
<name>010_tree</name>
<depend>
<is_tree />
</depend>
<sort_order>10</sort_order>
</tree>
<not_tree>
<name>020_not_tree</name>
<depend>
<not_is_tree />
</depend>
<sort_order>20</sort_order>
</not_tree>
</code>
</category_entity_tab>
<entity_view_block translate="title description condition" module="modulecreator">
<title>Entity view block</title>
<description>This is the entity view page main block.</description>
<condition>It is generated for entities that have a frontend view enabled</condition>
<scope>entity</scope>
<filetype>php</filetype>
<depend>
<create_view/>
</depend>
<source>app/code/Block/Entity/View/</source>
<destination>app/code/{{codepool}}/{{Namespace}}/{{Module}}/Block/{{Entity}}/View.php</destination>
<code>
<content>
<name>010_content</name>
<sort_order>10</sort_order>
</content>
</code>
</entity_view_block>
<entity_child_list_block>
<title>Entity children list block</title>
<description>Block that lists the entity child entities.</description>
<condition>It is generated for entities in parent/child relation</condition>
<source>app/code/Block/Entity/Child/List/</source>
<destination>app/code/{{codepool}}/{{Namespace}}/{{Module}}/Block/{{Entity}}/{{Sibling}}/List.php</destination>
<scope>children</scope>
<filetype>php</filetype>
<depend>
<show_frontend_relation_children/>
</depend>
<code>
<content>
<name>010_content</name>
<sort_order>10</sort_order>
</content>
</code>
</entity_child_list_block>
<entity_children_list_block>
<title>Entity child nodes list block</title>
<description>Block that lists the entity child nodes.</description>
<condition>It is generated for tree entities that have frontend enabled.</condition>
<source>app/code/Block/Entity/Children/</source>
<destination>app/code/{{codepool}}/{{Namespace}}/{{Module}}/Block/{{Entity}}/Children.php</destination>
<scope>entity</scope>
<filetype>php</filetype>
<depend>
<create_view/>
<is_tree/>
</depend>
<code>
<content>
<name>010_content</name>
<sort_order>10</sort_order>
</content>
</code>
</entity_children_list_block>
<wysiwyg_helper_block translate="title description condition" module="modulecreator">
<title>WISIWYG helper block.</title>
<description>Helper block for tree attributes with editors</description>
<condition>Generated if there is at least one tree entity that has an attribute that uses WYSIWYG editor</condition>
<scope>global</scope>
<filetype>php</filetype>
<depend>
<editor/>
<has_tree/>
</depend>
<source>app/code/Block/Adminhtml/Helper/Wysiwyg/</source>
<destination>app/code/{{codepool}}/{{Namespace}}/{{Module}}/Block/Adminhtml/Helper/Wysiwyg.php</destination>
<code>
<content>
<name>010_content</name>
<sort_order>10</sort_order>
</content>
</code>
</wysiwyg_helper_block>
<fieldset_renderer_block translate="title description condition" module="modulecreator">
<title>Element renderer for EAV attributes.</title>
<description>Renderer used for EAV attribute form</description>
<condition>Generated if there is at least one EAV entity </condition>
<scope>global</scope>
<filetype>php</filetype>
<depend>
<has_eav />
</depend>
<source>app/code/Block/Adminhtml/Module/Renderer/Fieldset/Element/</source>
<destination>app/code/{{codepool}}/{{Namespace}}/{{Module}}/Block/Adminhtml/{{ModuleFolder}}/Renderer/Fieldset/Element.php</destination>
<code>
<content>
<name>010_content</name>
<sort_order>10</sort_order>
</content>
</code>
</fieldset_renderer_block>
<wysiwyg_content_block translate="title description condition" module="modulecreator">
<title>Helper for WYSIWYG attributes.</title>
<description>Helper for WYSIWYG attributes.</description>
<condition>Generated if there is at least one EAV entity </condition>
<scope>global</scope>
<filetype>php</filetype>
<depend>
<has_eav />
</depend>
<source>app/code/Block/Adminhtml/Module/Helper/Form/Wysiwyg/Content/</source>
<destination>app/code/{{codepool}}/{{Namespace}}/{{Module}}/Block/Adminhtml/{{ModuleFolder}}/Helper/Form/Wysiwyg/Content.php</destination>
<code>
<content>
<name>010_content</name>
<sort_order>10</sort_order>
</content>
</code>
</wysiwyg_content_block>
<entity_form_tabs translate="title description condition" module="modulecreator">
<title>Entity admin tabs block.</title>
<description>Block used to generate the tabs in the admin add/edit form.</description>
<condition>Is always generated</condition>
<scope>entity</scope>
<filetype>php</filetype>
<source>app/code/Block/Adminhtml/Entity/Edit/Tabs/</source>
<destination>app/code/{{codepool}}/{{Namespace}}/{{Module}}/Block/Adminhtml/{{Entity}}/Edit/Tabs.php</destination>
<code>
<top>
<name>010_top</name>
<sort_order>10</sort_order>
</top>
<flat_not_tree_prepare>
<name>020_flat_not_tree_prepare</name>
<depend>
<not_is_tree/>
<is_flat/>
</depend>
<sort_order>20</sort_order>
</flat_not_tree_prepare>
<flat_tree_prepare>
<name>030_flat_tree_prepare</name>
<depend>
<is_tree/>
<is_flat/>
</depend>
<sort_order>30</sort_order>
</flat_tree_prepare>
<eav_prepare_top>
<name>040_eav_prepare_top</name>
<depend>
<is_eav/>
<not_is_tree />
</depend>
<sort_order>40</sort_order>
</eav_prepare_top>
<eav_tree_prepare_top>
<name>042_eav_tree_prepare_top</name>
<depend>
<is_eav/>
<is_tree />
</depend>
<sort_order>40</sort_order>
</eav_tree_prepare_top>
<eav_seo_prepare>
<name>043_eav_seo_prepare</name>
<depend>
<is_eav />
<add_seo />
</depend>
<sort_order>43</sort_order>
</eav_seo_prepare>
<eav_prepare_bottom>
<name>047_eav_prepare_bottom</name>
<depend>
<is_eav/>
</depend>
<sort_order>47</sort_order>
</eav_prepare_bottom>
<eav_prepare_bottom_tree>
<name>048_eav_prepare_bottom_tree</name>
<depend>
<is_eav/>
<is_tree />
</depend>
<sort_order>48</sort_order>
</eav_prepare_bottom_tree>
<eav_prepare_real_bottom>
<name>049_eav_prepare_real_bottom</name>
<depend>
<is_eav/>
</depend>
<sort_order>49</sort_order>
</eav_prepare_real_bottom>
<seo>
<name>050_seo</name>
<depend>
<add_seo />
<is_flat />
</depend>
<sort_order>50</sort_order>
</seo>
<seo_eav>
<name>055_seo_eav</name>
<depend>
<add_seo />
<is_eav />
</depend>
<sort_order>55</sort_order>
</seo_eav>
<stores>
<name>060_stores</name>
<depend>
<store/>
</depend>
<sort_order>60</sort_order>
</stores>
<relation_not_tree>
<name>070_relation_not_tree</name>
<scope>siblings</scope>
<depend>
<not_is_tree/>
</depend>
<sort_order>70</sort_order>
</relation_not_tree>
<relation_tree>
<name>080_relation_tree</name>
<scope>siblings</scope>
<depend>
<is_tree/>
</depend>
<sort_order>80</sort_order>
</relation_tree>
<product_relation_not_tree>