clipgenerator - Version 1.0.1

Version Notes

* Version 1.0.0
* Bugfix Musikwahl v1.0.1

Download this release

Release Info

Developer Trivid GmbH
Extension clipgenerator
Version 1.0.1
Comparing to
See all releases


Code changes from version 1.0.0 to 1.0.1

app/code/community/Trivid/Clipgenerator/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <Trivid_Clipgenerator>
5
- <version>1.0.0</version>
6
  </Trivid_Clipgenerator>
7
  </modules>
8
  <global>
2
  <config>
3
  <modules>
4
  <Trivid_Clipgenerator>
5
+ <version>1.0.1</version>
6
  </Trivid_Clipgenerator>
7
  </modules>
8
  <global>
app/code/community/Trivid/Clipgenerator/sql/clipgenerator_setup/mysql4-install-1.0.1.php ADDED
@@ -0,0 +1,200 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Install Script
4
+ *
5
+ * PHP version 5
6
+ *
7
+ * LICENSE: is available through the world-wide-web at the following URI:
8
+ * http://www.clipgenerator.com/static/public/legal.php If you did not receive a copy of
9
+ * the Clipgenerator - End User License Agreement and are unable to obtain it through the web, please
10
+ * send a note to info@trivid.com so we can mail you a copy immediately.
11
+ *
12
+ * @package Trivid
13
+ * @author Trivid GmbH <author@example.com>
14
+ * @author Another Author <another@example.com>
15
+ * @copyright 2013 Trivid GmbH
16
+ * @license http://www.clipgenerator.com/static/public/legal.php Clipgenerator - End User License Agreement
17
+ * @version 1.0.0
18
+ * @since File available since Release 1.0.0
19
+ */
20
+ $installer = $this;
21
+ $installer->startSetup();
22
+ $installer->addAttribute(Mage_Catalog_Model_Product::ENTITY, 'clipgenerator_title', array(
23
+ 'group' => 'Clipgenerator',
24
+ 'input' => 'text',
25
+ 'type' => 'varchar',
26
+ 'label' => 'Video Titel',
27
+ 'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_WEBSITE,
28
+ 'visible' => TRUE,
29
+ 'required' => FALSE,
30
+ 'user_defined' => TRUE,
31
+ 'searchable' => FALSE,
32
+ 'filterable' => FALSE,
33
+ 'comparable' => FALSE,
34
+ 'visible_on_front' => FALSE,
35
+ 'unique' => FALSE,
36
+ 'apply_to' => 'simple,configurable,bundle,grouped',
37
+ 'is_configurable' => FALSE,
38
+ ));
39
+ $installer->addAttribute(Mage_Catalog_Model_Product::ENTITY, 'clipgenerator_description', array(
40
+ 'group' => 'Clipgenerator',
41
+ 'input' => 'textarea',
42
+ 'type' => 'varchar',
43
+ 'label' => 'Beschreibung',
44
+ 'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_WEBSITE,
45
+ 'visible' => TRUE,
46
+ 'required' => FALSE,
47
+ 'user_defined' => TRUE,
48
+ 'searchable' => FALSE,
49
+ 'filterable' => FALSE,
50
+ 'comparable' => FALSE,
51
+ 'visible_on_front' => FALSE,
52
+ 'unique' => FALSE,
53
+ 'apply_to' => 'simple,configurable,bundle,grouped',
54
+ 'is_configurable' => FALSE,
55
+ ));
56
+ $installer->addAttribute(Mage_Catalog_Model_Product::ENTITY, 'clipgenerator_keywords', array(
57
+ 'group' => 'Clipgenerator',
58
+ 'input' => 'text',
59
+ 'type' => 'varchar',
60
+ 'label' => 'Video Keywords',
61
+ 'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_WEBSITE,
62
+ 'visible' => TRUE,
63
+ 'required' => FALSE,
64
+ 'user_defined' => TRUE,
65
+ 'searchable' => FALSE,
66
+ 'filterable' => FALSE,
67
+ 'comparable' => FALSE,
68
+ 'visible_on_front' => FALSE,
69
+ 'unique' => FALSE,
70
+ 'apply_to' => 'simple,configurable,bundle,grouped',
71
+ 'is_configurable' => FALSE,
72
+ ));
73
+ $installer->addAttribute(Mage_Catalog_Model_Product::ENTITY, 'clipgenerator_logo', array(
74
+ 'group' => 'Clipgenerator',
75
+ 'input' => 'text',
76
+ 'type' => 'varchar',
77
+ 'label' => 'Video Logo URL',
78
+ 'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_WEBSITE,
79
+ 'visible' => TRUE,
80
+ 'required' => FALSE,
81
+ 'user_defined' => TRUE,
82
+ 'searchable' => FALSE,
83
+ 'filterable' => FALSE,
84
+ 'comparable' => FALSE,
85
+ 'visible_on_front' => FALSE,
86
+ 'unique' => FALSE,
87
+ 'apply_to' => 'simple,configurable,bundle,grouped',
88
+ 'is_configurable' => FALSE,
89
+ ));
90
+ $installer->addAttribute(Mage_Catalog_Model_Product::ENTITY, 'clipgenerator_show', array(
91
+ 'group' => 'Clipgenerator',
92
+ 'input' => 'boolean',
93
+ 'type' => 'int',
94
+ 'default' => 0,
95
+ 'label' => 'Video ausgeben',
96
+ 'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_WEBSITE,
97
+ 'visible' => TRUE,
98
+ 'required' => FALSE,
99
+ 'user_defined' => TRUE,
100
+ 'searchable' => FALSE,
101
+ 'filterable' => FALSE,
102
+ 'comparable' => FALSE,
103
+ 'visible_on_front' => FALSE,
104
+ 'unique' => FALSE,
105
+ 'apply_to' => 'simple,configurable,bundle,grouped',
106
+ 'is_configurable' => FALSE,
107
+ ));
108
+ $installer->addAttribute(Mage_Catalog_Model_Product::ENTITY, 'clipgenerator_design', array(
109
+ 'group' => 'Clipgenerator',
110
+ 'input' => 'select',
111
+ 'type' => 'varchar',
112
+ 'label' => 'Design',
113
+ 'source' => 'trivid_clipgenerator_model_source_designs',
114
+ 'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_WEBSITE,
115
+ 'visible' => TRUE,
116
+ 'required' => FALSE,
117
+ 'user_defined' => TRUE,
118
+ 'searchable' => FALSE,
119
+ 'filterable' => FALSE,
120
+ 'comparable' => FALSE,
121
+ 'visible_on_front' => FALSE,
122
+ 'unique' => FALSE,
123
+ 'apply_to' => 'simple,configurable,bundle,grouped',
124
+ 'is_configurable' => FALSE,
125
+ ));
126
+ $installer->addAttribute(Mage_Catalog_Model_Product::ENTITY, 'clipgenerator_images_select', array(
127
+ 'group' => 'Clipgenerator',
128
+ 'type' => 'text',
129
+ 'input' => 'text',
130
+ 'backend' => '',
131
+ 'input_renderer' => 'clipgenerator/catalog_product_helper_form_images', //definition of renderer
132
+ 'label' => 'Bildauswahl',
133
+ 'class' => '',
134
+ 'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_WEBSITE,
135
+ 'visible' => TRUE,
136
+ 'required' => FALSE,
137
+ 'user_defined' => TRUE,
138
+ 'searchable' => FALSE,
139
+ 'filterable' => FALSE,
140
+ 'comparable' => FALSE,
141
+ 'visible_on_front' => FALSE,
142
+ 'unique' => FALSE,
143
+ 'apply_to' => 'simple,configurable,bundle,grouped',
144
+ 'is_configurable' => FALSE,
145
+ ));
146
+ $installer->addAttribute(Mage_Catalog_Model_Product::ENTITY, 'clipgenerator_song', array(
147
+ 'group' => 'Clipgenerator',
148
+ 'input' => 'select',
149
+ 'type' => 'varchar',
150
+ 'label' => 'Musik',
151
+ 'source' => 'trivid_clipgenerator_model_source_musics',
152
+ 'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_WEBSITE,
153
+ 'visible' => TRUE,
154
+ 'required' => FALSE,
155
+ 'user_defined' => TRUE,
156
+ 'searchable' => FALSE,
157
+ 'filterable' => FALSE,
158
+ 'comparable' => FALSE,
159
+ 'visible_on_front' => FALSE,
160
+ 'unique' => FALSE,
161
+ 'apply_to' => 'simple,configurable,bundle,grouped',
162
+ 'is_configurable' => FALSE,
163
+ ));
164
+ $installer->addAttribute(Mage_Catalog_Model_Product::ENTITY, 'clipgenerator_music_select', array(
165
+ 'group' => 'Clipgenerator',
166
+ 'type' => 'varchar',
167
+ 'backend' => '',
168
+ 'input_renderer' => 'clipgenerator/catalog_product_helper_form_music', //definition of renderer
169
+ 'label' => 'erweiterte Auswahl',
170
+ 'class' => '',
171
+ 'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_WEBSITE,
172
+ 'visible' => TRUE,
173
+ 'required' => FALSE,
174
+ 'user_defined' => TRUE,
175
+ 'searchable' => FALSE,
176
+ 'filterable' => FALSE,
177
+ 'comparable' => FALSE,
178
+ 'visible_on_front' => FALSE,
179
+ 'unique' => FALSE,
180
+ 'apply_to' => 'simple,configurable,bundle,grouped',
181
+ 'is_configurable' => FALSE,
182
+ ));
183
+ $installer->addAttribute(Mage_Catalog_Model_Product::ENTITY, 'clipgenerator_video_id', array(
184
+ 'group' => 'Clipgenerator',
185
+ 'input' => 'text',
186
+ 'type' => 'varchar',
187
+ 'label' => 'Video ID',
188
+ 'global' => Mage_Catalog_Model_Resource_Eav_Attribute::SCOPE_WEBSITE,
189
+ 'visible' => TRUE,
190
+ 'required' => FALSE,
191
+ 'user_defined' => TRUE,
192
+ 'searchable' => FALSE,
193
+ 'filterable' => FALSE,
194
+ 'comparable' => FALSE,
195
+ 'visible_on_front' => FALSE,
196
+ 'unique' => FALSE,
197
+ 'apply_to' => 'simple,configurable,bundle,grouped',
198
+ 'is_configurable' => FALSE,
199
+ ));
200
+ $installer->endSetup();
app/design/adminhtml/default/default/template/clipgenerator/music.phtml CHANGED
@@ -106,7 +106,6 @@ $music = $clipgen->getMusic();
106
  <ul id="select">
107
  <li class="genres"><?= $clipgen->__('Genre') ?></li>
108
  <li class="moods"><?= $clipgen->__('Mood') ?></li>
109
- <li class="instruments"><?= $clipgen->__('Instruments') ?></li>
110
  <li class="speeds"><?= $clipgen->__('Speed') ?></li>
111
  <li class="themes"><?= $clipgen->__('Theme') ?></li>
112
  </ul>
@@ -169,9 +168,15 @@ $music = $clipgen->getMusic();
169
  if (storage[load].length != 0) {
170
  // clear lists
171
  $('musicleftmenu').update('');
172
- storage[load].each(function (el) {
173
- $('musicleftmenu').insert('<li class="' + el['id'] + '">' + el['title'] + '</li>');
174
- });
 
 
 
 
 
 
175
  }
176
  });
177
  $('musicleftmenu').observe('click', function (event) {
106
  <ul id="select">
107
  <li class="genres"><?= $clipgen->__('Genre') ?></li>
108
  <li class="moods"><?= $clipgen->__('Mood') ?></li>
 
109
  <li class="speeds"><?= $clipgen->__('Speed') ?></li>
110
  <li class="themes"><?= $clipgen->__('Theme') ?></li>
111
  </ul>
168
  if (storage[load].length != 0) {
169
  // clear lists
170
  $('musicleftmenu').update('');
171
+ if(load == 'speeds') {
172
+ $H(storage[load]).each(function (el, index) {
173
+ $('musicleftmenu').insert('<li class="' + el[0] + '">' + el[1] + '</li>');
174
+ });
175
+ } else {
176
+ storage[load].each(function (el) {
177
+ $('musicleftmenu').insert('<li class="' + el['id'] + '">' + el['title'] + '</li>');
178
+ });
179
+ }
180
  }
181
  });
182
  $('musicleftmenu').observe('click', function (event) {
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>clipgenerator</name>
4
- <version>1.0.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.clipgenerator.com/static/public/legal.php">Clipgenerator - End User License Agreement</license>
7
  <channel>community</channel>
@@ -53,11 +53,12 @@
53
  &#xD;
54
  &lt;h3&gt;Anleitung&lt;/h3&gt;&#xD;
55
  Eine Anleitung zur Nutzung des Clipgenerator&#x2122;-Plugin f&#xFC;r Magento k&#xF6;nnen Sie &lt;a href="http://www.trivid.com/wp-content/uploads/2013/10/clipgenerator-plugin-handbuch.pdf"&gt;hier&lt;/a&gt; herunterladen.</description>
56
- <notes>* Version 1.0.0</notes>
 
57
  <authors><author><name>Trivid GmbH</name><user>trivid_gmbh</user><email>magento@clipgenerator.com</email></author></authors>
58
- <date>2013-10-29</date>
59
- <time>19:59:07</time>
60
- <contents><target name="magecommunity"><dir><dir name="Trivid"><dir name="Clipgenerator"><dir><dir name="Adminhtml"><file name="MassController.php" hash="6451b00d63f88c273b24bd9ffaf1dd72"/><file name="OrderformController.php" hash="1a99976446b230d2ea0636bde3889054"/></dir><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Contingentlabel.php" hash="2be82b98fe1bebd1d82d30ce1bb2d649"/><file name="Musiclightbox.php" hash="464045a595db0e91ebb181755b2a3bfa"/></dir></dir></dir></dir></dir><dir name="Catalog"><dir name="Product"><dir name="Helper"><dir name="Form"><file name="Images.php" hash="aac3ebf3fd5238a858ef3a4eddd445cb"/><file name="Music.php" hash="a07cee46c2a10843f0a80c8bd199f4c8"/><file name="music.php" hash="c52dda2e89df9b62a374f6f3df9dc7fe"/></dir></dir></dir></dir><file name="InsertVideo.php" hash="181bcd9e93a68728af6c40a4d1863ada"/><file name="Video.php" hash="dfebc08e99f9317924b0f476f0288a90"/></dir><dir name="Helper"><file name="Data.php" hash="e86c4a865ca08021606e29f4177307fd"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Source"><file name="Designs.php" hash="f9131fd5f45a57dbf3b0c9263cc49844"/><file name="Musics.php" hash="1b07117ca6537fc8104ca3a2909c53ce"/></dir></dir></dir></dir><dir name="Mysql4"><file name="Setup.php" hash="bc0481fa5386033f3ce6ac9029b82a08"/></dir><file name="Observer.php" hash="ad035f799a8b66609305e21f3f7a3644"/><dir name="Source"><file name="Designs.php" hash="cfa2f560b2d1c03a048fc1dfa8895823"/><file name="Musics.php" hash="060b151a485e30eaf586d906928a8f52"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="MassController.php" hash="05623ae1c2ee1a1952df7ade0dcc1a31"/><file name="OrderformController.php" hash="1a99976446b230d2ea0636bde3889054"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="da3eb20bfd72ff9e0e5000dcb49f5fd8"/><file name="config.xml" hash="7e9a0b4a5363b8fcdaf6e1060bf714b7"/><file name="system.xml" hash="1fbd0c008a4f9dda41ca51cfd95dce43"/></dir><dir name="lib"><dir name="clipgenerator"><file name="ClipgeneratorClient.php" hash="ee3da37d7947591dc3fc6886d8dc710d"/><file name="Frame.php" hash="9455ee512fed22039d7700b9db5b50ed"/><file name="Logo.php" hash="21c9732369bc983549cbfe525e8a327c"/><file name="LowerThird.php" hash="bfe8a3bbc65292d09dcb7384ac791413"/><file name="Picture.php" hash="b8b29fe5e1106f05281d83dc90888461"/><file name="Video.php" hash="95176448517ba383a5d30a0108dd2f49"/></dir></dir><dir name="sql"><dir name="clipgenerator_setup"><file name="mysql4-install-0.1.0.php" hash="7d8c159488c3095c2fe26ec9b9691d41"/><file name="mysql4-install-1.0.0.php" hash="63644f41ed5cf5797d3808386caafb66"/></dir></dir></dir></dir></dir></dir></target><target name="magedesign"><dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="clipgenerator"><file name="contingent.phtml" hash="f236a5ab0bdedf11ad6bacddd32a433b"/><file name="images.phtml" hash="6cfe794918dfcd7c9ca19d97981d0486"/><file name="music.phtml" hash="a97eb70c9626bdd7722d640a29b1182b"/><file name="orderform.phtml" hash="1139bdf2fc763fe6231dc26aae5bfd94"/></dir></dir><dir name="layout"><file name="clipgenerator.xml" hash="7070a0cd1223aabd72590fe3134be051"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir><dir name="de_DE"><file name="Trivid_Clipgenerator.csv" hash="7cb7b98981d24204016b54c821011d44"/></dir></dir></target><target name="mageetc"><dir><dir name="modules"><file name="Trivid_Clipgenerator.xml" hash="63ce89126d102aa43d975022570107cf"/></dir></dir></target></contents>
61
  <compatible/>
62
  <dependencies><required><php><min>5.2.13</min><max>5.3.24</max></php></required></dependencies>
63
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>clipgenerator</name>
4
+ <version>1.0.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.clipgenerator.com/static/public/legal.php">Clipgenerator - End User License Agreement</license>
7
  <channel>community</channel>
53
  &#xD;
54
  &lt;h3&gt;Anleitung&lt;/h3&gt;&#xD;
55
  Eine Anleitung zur Nutzung des Clipgenerator&#x2122;-Plugin f&#xFC;r Magento k&#xF6;nnen Sie &lt;a href="http://www.trivid.com/wp-content/uploads/2013/10/clipgenerator-plugin-handbuch.pdf"&gt;hier&lt;/a&gt; herunterladen.</description>
56
+ <notes>* Version 1.0.0&#xD;
57
+ * Bugfix Musikwahl v1.0.1</notes>
58
  <authors><author><name>Trivid GmbH</name><user>trivid_gmbh</user><email>magento@clipgenerator.com</email></author></authors>
59
+ <date>2013-10-30</date>
60
+ <time>19:01:22</time>
61
+ <contents><target name="magecommunity"><dir><dir name="Trivid"><dir name="Clipgenerator"><dir><dir name="Adminhtml"><file name="MassController.php" hash="6451b00d63f88c273b24bd9ffaf1dd72"/><file name="OrderformController.php" hash="1a99976446b230d2ea0636bde3889054"/></dir><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Form"><dir name="Field"><file name="Contingentlabel.php" hash="2be82b98fe1bebd1d82d30ce1bb2d649"/><file name="Musiclightbox.php" hash="464045a595db0e91ebb181755b2a3bfa"/></dir></dir></dir></dir></dir><dir name="Catalog"><dir name="Product"><dir name="Helper"><dir name="Form"><file name="Images.php" hash="aac3ebf3fd5238a858ef3a4eddd445cb"/><file name="Music.php" hash="a07cee46c2a10843f0a80c8bd199f4c8"/><file name="music.php" hash="c52dda2e89df9b62a374f6f3df9dc7fe"/></dir></dir></dir></dir><file name="InsertVideo.php" hash="181bcd9e93a68728af6c40a4d1863ada"/><file name="Video.php" hash="dfebc08e99f9317924b0f476f0288a90"/></dir><dir name="Helper"><file name="Data.php" hash="e86c4a865ca08021606e29f4177307fd"/></dir><dir name="Model"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Source"><file name="Designs.php" hash="f9131fd5f45a57dbf3b0c9263cc49844"/><file name="Musics.php" hash="1b07117ca6537fc8104ca3a2909c53ce"/></dir></dir></dir></dir><dir name="Mysql4"><file name="Setup.php" hash="bc0481fa5386033f3ce6ac9029b82a08"/></dir><file name="Observer.php" hash="ad035f799a8b66609305e21f3f7a3644"/><dir name="Source"><file name="Designs.php" hash="cfa2f560b2d1c03a048fc1dfa8895823"/><file name="Musics.php" hash="060b151a485e30eaf586d906928a8f52"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="MassController.php" hash="05623ae1c2ee1a1952df7ade0dcc1a31"/><file name="OrderformController.php" hash="1a99976446b230d2ea0636bde3889054"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="da3eb20bfd72ff9e0e5000dcb49f5fd8"/><file name="config.xml" hash="26536aaed61a70cd999341734437f27b"/><file name="system.xml" hash="1fbd0c008a4f9dda41ca51cfd95dce43"/></dir><dir name="lib"><dir name="clipgenerator"><file name="ClipgeneratorClient.php" hash="ee3da37d7947591dc3fc6886d8dc710d"/><file name="Frame.php" hash="9455ee512fed22039d7700b9db5b50ed"/><file name="Logo.php" hash="21c9732369bc983549cbfe525e8a327c"/><file name="LowerThird.php" hash="bfe8a3bbc65292d09dcb7384ac791413"/><file name="Picture.php" hash="b8b29fe5e1106f05281d83dc90888461"/><file name="Video.php" hash="95176448517ba383a5d30a0108dd2f49"/></dir></dir><dir name="sql"><dir name="clipgenerator_setup"><file name="mysql4-install-0.1.0.php" hash="7d8c159488c3095c2fe26ec9b9691d41"/><file name="mysql4-install-1.0.0.php" hash="63644f41ed5cf5797d3808386caafb66"/><file name="mysql4-install-1.0.1.php" hash="63644f41ed5cf5797d3808386caafb66"/></dir></dir></dir></dir></dir></dir></target><target name="magedesign"><dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="clipgenerator"><file name="contingent.phtml" hash="f236a5ab0bdedf11ad6bacddd32a433b"/><file name="images.phtml" hash="6cfe794918dfcd7c9ca19d97981d0486"/><file name="music.phtml" hash="392f14f526c0c17211d0a1fd5d9043d8"/><file name="orderform.phtml" hash="1139bdf2fc763fe6231dc26aae5bfd94"/></dir></dir><dir name="layout"><file name="clipgenerator.xml" hash="7070a0cd1223aabd72590fe3134be051"/></dir></dir></dir></dir></dir></target><target name="magelocale"><dir><dir name="de_DE"><file name="Trivid_Clipgenerator.csv" hash="7cb7b98981d24204016b54c821011d44"/></dir></dir></target><target name="mageetc"><dir><dir name="modules"><file name="Trivid_Clipgenerator.xml" hash="63ce89126d102aa43d975022570107cf"/></dir></dir></target></contents>
62
  <compatible/>
63
  <dependencies><required><php><min>5.2.13</min><max>5.3.24</max></php></required></dependencies>
64
  </package>