eBay_Enterprise_Affiliate_Extension - Version 1.2.1.0

Version Notes

1.2.1.0 Release Notes
Added uninstall button to prevent errors when using magento connect.

Download this release

Release Info

Developer Philip Preston
Extension eBay_Enterprise_Affiliate_Extension
Version 1.2.1.0
Comparing to
See all releases


Code changes from version 1.2.0.2 to 1.2.1.0

app/code/community/EbayEnterprise/Affiliate/Block/Adminhtml/System/Config/Form/Button.php ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class EbayEnterprise_Affiliate_Block_Adminhtml_System_Config_Form_Button extends Mage_Adminhtml_Block_System_Config_Form_Field
4
+ {
5
+ protected function _construct()
6
+ {
7
+ parent::_construct();
8
+ $this->setTemplate('eems_affiliate/system/config/button.phtml');
9
+ }
10
+
11
+ protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element)
12
+ {
13
+ return $this->_toHtml();
14
+ }
15
+
16
+ public function getAjaxUninstallUrl()
17
+ {
18
+ return Mage::helper('adminhtml')->getUrl('adminhtml/eemsAffiliate/uninstall');
19
+ }
20
+
21
+ public function getButtonHtml()
22
+ {
23
+ $button = $this->getLayout()->createBlock('adminhtml/widget_button')->setData(
24
+ array(
25
+ 'id' => 'eems_affiliate_uninstall',
26
+ 'label' => $this->helper('adminhtml')->__('Uninstall'),
27
+ 'onclick' => 'javascript:uninstall(); return false;',
28
+ ));
29
+
30
+ return $button->toHtml();
31
+ }
32
+ }
app/code/community/EbayEnterprise/Affiliate/controllers/Adminhtml/EemsAffiliateController.php ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class EbayEnterprise_Affiliate_Adminhtml_EemsAffiliateController extends Mage_Adminhtml_Controller_Action
4
+ {
5
+ const AFFILIATE_ID = 'commissioning_category';
6
+ const DEFAULT_SCONFIG_FILENAME = 'cache.cfg';
7
+ const PACKAGE_CHANNEL = 'community';
8
+ const PACKAGE_NAME = 'eBay_Enterprise_Affiliate_Extension';
9
+
10
+ protected $_config;
11
+ protected $_sconfig;
12
+
13
+ public function uninstallAction()
14
+ {
15
+ // Remove commissioning category
16
+ $setup = new Mage_Eav_Model_Entity_Setup('eems_affiliate_setup');
17
+ $setup->startSetup();
18
+
19
+ $objCatalogEavSetup = Mage::getResourceModel('catalog/eav_mysql4_setup', 'core_setup');
20
+
21
+ Mage::log(array('uninstallAction', get_class($objCatalogEavSetup)));
22
+ $attributeExists = (bool) $objCatalogEavSetup->getAttributeId(Mage_Catalog_Model_Product::ENTITY, self::AFFILIATE_ID);
23
+ if ($attributeExists) {
24
+ $setup->removeAttribute(Mage_Catalog_Model_Product::ENTITY, self::AFFILIATE_ID);
25
+ }
26
+
27
+ $setup->endSetup();
28
+
29
+ // Uninstall extension
30
+ Mage_Connect_Command::registerCommands(); // Must run or next line will fail
31
+ $installer = Mage_Connect_Command::getInstance('uninstall');
32
+ $installer->setFrontendObject(Mage_Connect_Frontend::getInstance('CLI'));
33
+ $installer->setSconfig($this->getSingleConfig());
34
+
35
+ $installer->doUninstall('uninstall', array(), array(self::PACKAGE_CHANNEL, self::PACKAGE_NAME));
36
+
37
+ // Clear cache
38
+ Mage::app()->cleanCache();
39
+
40
+ // Send message to admin
41
+ Mage::getSingleton('core/session')->addSuccess('Package ' . self::PACKAGE_CHANNEL . '/' . self::PACKAGE_NAME . ' successfully deleted');
42
+ }
43
+
44
+ /**
45
+ * Retrieve object of config and set it to Mage_Connect_Command
46
+ *
47
+ * @return Mage_Connect_Config
48
+ */
49
+ public function getConfig()
50
+ {
51
+ if (!$this->_config) {
52
+ $this->_config = new Mage_Connect_Config();
53
+ $ftp=$this->_config->__get('remote_config');
54
+ if(!empty($ftp)){
55
+ $packager = new Mage_Connect_Packager();
56
+ list($cache, $config, $ftpObj) = $packager->getRemoteConf($ftp);
57
+ $this->_config=$config;
58
+ $this->_sconfig=$cache;
59
+ }
60
+ $this->_config->magento_root = Mage::getBaseDir('base');
61
+ Mage_Connect_Command::setConfigObject($this->_config);
62
+ }
63
+ return $this->_config;
64
+ }
65
+
66
+ /**
67
+ * Retrieve object of single config and set it to Mage_Connect_Command
68
+ *
69
+ * @param bool $reload
70
+ * @return Mage_Connect_Singleconfig
71
+ */
72
+ public function getSingleConfig($reload = false)
73
+ {
74
+ if(!$this->_sconfig || $reload) {
75
+ $this->_sconfig = new Mage_Connect_Singleconfig(
76
+ $this->getConfig()->magento_root . DIRECTORY_SEPARATOR
77
+ . $this->getConfig()->downloader_path . DIRECTORY_SEPARATOR
78
+ . self::DEFAULT_SCONFIG_FILENAME
79
+ );
80
+ }
81
+ Mage_Connect_Command::setSconfig($this->_sconfig);
82
+ return $this->_sconfig;
83
+
84
+ }
85
+ }
app/code/community/EbayEnterprise/Affiliate/etc/config.xml CHANGED
@@ -1,1030 +1,1041 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!--
3
- Copyright (c) 2014 eBay Enterprise, Inc.
4
-
5
- NOTICE OF LICENSE
6
-
7
- This source file is subject to the eBay Enterprise
8
- Magento Extensions End User License Agreement
9
- that is bundled with this package in the file LICENSE.md.
10
- It is also available through the world-wide-web at this URL:
11
- http://www.ebayenterprise.com/files/pdf/Magento_Connect_Extensions_EULA_050714.pdf
12
-
13
- @copyright Copyright (c) 2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/)
14
- @license http://www.ebayenterprise.com/files/pdf/Magento_Connect_Extensions_EULA_050714.pdf eBay Enterprise Magento Extensions End User License Agreement
15
- -->
16
- <config>
17
- <modules>
18
- <EbayEnterprise_Affiliate>
19
- <version>1.2.0.2</version>
20
- </EbayEnterprise_Affiliate>
21
- </modules>
22
- <global>
23
- <models>
24
- <eems_affiliate>
25
- <class>EbayEnterprise_Affiliate_Model</class>
26
- </eems_affiliate>
27
- </models>
28
- <helpers>
29
- <eems_affiliate>
30
- <class>EbayEnterprise_Affiliate_Helper</class>
31
- </eems_affiliate>
32
- </helpers>
33
- <blocks>
34
- <eems_affiliate>
35
- <class>EbayEnterprise_Affiliate_Block</class>
36
- </eems_affiliate>
37
- </blocks>
38
- <resources>
39
- <eems_affiliate_setup>
40
- <setup>
41
- <module>EbayEnterprise_Affiliate</module>
42
- <class>Mage_Core_Model_Resource_Setup</class>
43
- </setup>
44
- </eems_affiliate_setup>
45
- </resources>
46
- </global>
47
- <crontab>
48
- <jobs>
49
- <eems_affiliate_generate_product_feed>
50
- <schedule>
51
- <cron_expr>0 3 * * *</cron_expr>
52
- </schedule>
53
- <run>
54
- <model>eems_affiliate/observer::createProductFeed</model>
55
- </run>
56
- </eems_affiliate_generate_product_feed>
57
- <eems_affiliate_generate_corrected_order_feed>
58
- <schedule>
59
- <cron_expr>0 3 * * *</cron_expr>
60
- </schedule>
61
- <run>
62
- <model>eems_affiliate/observer::createCorrectedOrdersFeed</model>
63
- </run>
64
- </eems_affiliate_generate_corrected_order_feed>
65
- </jobs>
66
- </crontab>
67
- <default>
68
- <marketing_solutions>
69
- <eems_affiliate>
70
- <active>0</active>
71
- <js_files>eems_affiliate/cookie.js</js_files>
72
- <!-- use comma to add more js files-->
73
- <beacon_url>https://t.pepperjamnetwork.com/track</beacon_url>
74
- <export_path>var/export/eems_affiliate/</export_path>
75
- <order_type>itemized</order_type>
76
- <program_id/>
77
- <transaction_type>1</transaction_type>
78
- <conditional_pixel_enabled>0</conditional_pixel_enabled>
79
- <source_key_name>eean</source_key_name>
80
- <product_feed_enabled>1</product_feed_enabled>
81
- <order_feed_enabled>1</order_feed_enabled>
82
- <feeds>
83
- <callback_mappings>
84
- <program_id>
85
- <class>eems_affiliate/map</class>
86
- <method>getProgramId</method>
87
- <type>helper</type>
88
- <column_name>PID</column_name>
89
- </program_id>
90
- <order_id>
91
- <class>eems_affiliate/map_order</class>
92
- <method>getOrderId</method>
93
- <type>helper</type>
94
- <column_name>OID</column_name>
95
- <params>
96
- <format>%.50s</format>
97
- </params>
98
- </order_id>
99
- <item_order_id>
100
- <class>eems_affiliate/map_order</class>
101
- <method>getItemOrderId</method>
102
- <type>helper</type>
103
- <column_name>OID</column_name>
104
- <params>
105
- <format>%.50s</format>
106
- </params>
107
- </item_order_id>
108
- <item_id>
109
- <class>eems_affiliate/map_order</class>
110
- <method>getItemId</method>
111
- <type>helper</type>
112
- <column_name>ITEMID</column_name>
113
- <params>
114
- <format>%.50s</format>
115
- <key>sku</key>
116
- </params>
117
- </item_id>
118
- <item_price>
119
- <class>eems_affiliate/map_order</class>
120
- <method>getItemPrice</method>
121
- <type>helper</type>
122
- <column_name>AMOUNT</column_name>
123
- <params>
124
- <format>%.2f</format>
125
- </params>
126
- </item_price>
127
- <item_quantity>
128
- <class>eems_affiliate/map_order</class>
129
- <method>getItemQuantity</method>
130
- <type>helper</type>
131
- <column_name>QUANTITY</column_name>
132
- </item_quantity>
133
- <dynamic_program_id>
134
- <class>eems_affiliate/map</class>
135
- <method>getProgramId</method>
136
- <type>helper</type>
137
- <column_name>PROGRAM_ID</column_name>
138
- </dynamic_program_id>
139
- <dynamic_item_order_id>
140
- <class>eems_affiliate/map_order</class>
141
- <method>getItemOrderId</method>
142
- <type>helper</type>
143
- <column_name>ORDER_ID</column_name>
144
- <params>
145
- <format>%.50s</format>
146
- </params>
147
- </dynamic_item_order_id>
148
- <dynamic_item_id>
149
- <class>eems_affiliate/map_order</class>
150
- <method>getItemId</method>
151
- <type>helper</type>
152
- <column_name>ITEM_ID</column_name>
153
- <params>
154
- <format>%.50s</format>
155
- <key>sku</key>
156
- </params>
157
- </dynamic_item_id>
158
- <dynamic_item_price>
159
- <class>eems_affiliate/map_order</class>
160
- <method>getItemPrice</method>
161
- <type>helper</type>
162
- <column_name>ITEM_PRICE</column_name>
163
- <params>
164
- <format>%.2f</format>
165
- </params>
166
- </dynamic_item_price>
167
- <category>
168
- <class>eems_affiliate/map_order</class>
169
- <method>getCategory</method>
170
- <type>helper</type>
171
- <column_name>CATEGORY</column_name>
172
- </category>
173
- <new_to_file>
174
- <class>eems_affiliate/map_order</class>
175
- <method>getNewToFile</method>
176
- <type>helper</type>
177
- <column_name>NEW_TO_FILE</column_name>
178
- </new_to_file>
179
- <order_amount>
180
- <class>eems_affiliate/map_order</class>
181
- <method>getOrderAmount</method>
182
- <type>helper</type>
183
- <column_name>AMOUNT</column_name>
184
- <params>
185
- <format>%.2f</format>
186
- </params>
187
- </order_amount>
188
- <reason>
189
- <class>eems_affiliate/map</class>
190
- <method>passStatic</method>
191
- <type>helper</type>
192
- <column_name>REASON</column_name>
193
- <params>
194
- <value>8</value>
195
- </params>
196
- </reason>
197
- <transaction_type>
198
- <class>eems_affiliate/map_order</class>
199
- <method>getTransactionType</method>
200
- <type>helper</type>
201
- <column_name>TYPE</column_name>
202
- </transaction_type>
203
- <age_range>
204
- <class>eems_affiliate/map</class>
205
- <method>getDataValue</method>
206
- <type>helper</type>
207
- <column_name>age_range</column_name>
208
- <params>
209
- <format>%.32s</format>
210
- </params>
211
- </age_range>
212
- <artist>
213
- <class>eems_affiliate/map</class>
214
- <method>getDataValue</method>
215
- <type>helper</type>
216
- <column_name>artist</column_name>
217
- <params>
218
- <format>%.128s</format>
219
- </params>
220
- </artist>
221
- <aspect_ratio>
222
- <class>eems_affiliate/map</class>
223
- <method>getDataValue</method>
224
- <type>helper</type>
225
- <column_name>aspect_ratio</column_name>
226
- <params>
227
- <format>%.16s</format>
228
- </params>
229
- </aspect_ratio>
230
- <author>
231
- <class>eems_affiliate/map</class>
232
- <method>getDataValue</method>
233
- <type>helper</type>
234
- <column_name>author</column_name>
235
- <params>
236
- <format>%.128s</format>
237
- </params>
238
- </author>
239
- <battery_life>
240
- <class>eems_affiliate/map</class>
241
- <method>getDataValue</method>
242
- <type>helper</type>
243
- <column_name>battery_life</column_name>
244
- <params>
245
- <format>%.32s</format>
246
- </params>
247
- </battery_life>
248
- <binding>
249
- <class>eems_affiliate/map</class>
250
- <method>getDataValue</method>
251
- <type>helper</type>
252
- <column_name>binding</column_name>
253
- <params>
254
- <format>%.32s</format>
255
- </params>
256
- </binding>
257
- <buy_url>
258
- <class>eems_affiliate/map</class>
259
- <method>getDataValue</method>
260
- <type>helper</type>
261
- <column_name>buy_url</column_name>
262
- <params>
263
- <key>product_url</key>
264
- <format>%.2000s</format>
265
- </params>
266
- </buy_url>
267
- <category_network>
268
- <class>eems_affiliate/map_product</class>
269
- <method>getCategory</method>
270
- <type>helper</type>
271
- <column_name>category_network</column_name>
272
- <params>
273
- <format>%.256s</format>
274
- </params>
275
- </category_network>
276
- <category_program>
277
- <class>eems_affiliate/map_product</class>
278
- <method>getCategory</method>
279
- <type>helper</type>
280
- <column_name>category_program</column_name>
281
- <params>
282
- <format>%.256s</format>
283
- </params>
284
- </category_program>
285
- <color>
286
- <class>eems_affiliate/map</class>
287
- <method>getDataValue</method>
288
- <type>helper</type>
289
- <column_name>color</column_name>
290
- <params>
291
- <format>%.32s</format>
292
- </params>
293
- </color>
294
- <color_output>
295
- <class>eems_affiliate/map</class>
296
- <method>getValueYesNo</method>
297
- <type>helper</type>
298
- <column_name>color_output</column_name>
299
- <params>
300
- <format>%s</format>
301
- </params>
302
- </color_output>
303
- <condition>
304
- <class>eems_affiliate/map</class>
305
- <method>getDataValue</method>
306
- <type>helper</type>
307
- <column_name>condition</column_name>
308
- <params>
309
- <format>%.64s</format>
310
- </params>
311
- </condition>
312
- <description_long>
313
- <class>eems_affiliate/map</class>
314
- <method>getDataValue</method>
315
- <type>helper</type>
316
- <column_name>description_long</column_name>
317
- <params>
318
- <format>%.2000s</format>
319
- </params>
320
- </description_long>
321
- <description_short>
322
- <class>eems_affiliate/map</class>
323
- <method>getDataValue</method>
324
- <type>helper</type>
325
- <column_name>description_short</column_name>
326
- <params>
327
- <format>%.512s</format>
328
- </params>
329
- </description_short>
330
- <director>
331
- <class>eems_affiliate/map</class>
332
- <method>getDataValue</method>
333
- <type>helper</type>
334
- <column_name>director</column_name>
335
- <params>
336
- <format>%.128s</format>
337
- </params>
338
- </director>
339
- <discontinued>
340
- <class>eems_affiliate/map</class>
341
- <method>getValueYesNo</method>
342
- <type>helper</type>
343
- <column_name>discontinued</column_name>
344
- <params>
345
- <format>%s</format>
346
- </params>
347
- </discontinued>
348
- <display_type>
349
- <class>eems_affiliate/map</class>
350
- <method>getDataValue</method>
351
- <type>helper</type>
352
- <column_name>display_type</column_name>
353
- <params>
354
- <format>%.32s</format>
355
- </params>
356
- </display_type>
357
- <edition>
358
- <class>eems_affiliate/map</class>
359
- <method>getDataValue</method>
360
- <type>helper</type>
361
- <column_name>edition</column_name>
362
- <params>
363
- <format>%.32s</format>
364
- </params>
365
- </edition>
366
- <expiration_date>
367
- <class>eems_affiliate/map</class>
368
- <method>getDateValue</method>
369
- <type>helper</type>
370
- <column_name>expiration_date</column_name>
371
- <params>
372
- <format>Y-m-d</format>
373
- </params>
374
- </expiration_date>
375
- <features>
376
- <class>eems_affiliate/map</class>
377
- <method>getDataValue</method>
378
- <type>helper</type>
379
- <column_name>features</column_name>
380
- <params>
381
- <format>%.128s</format>
382
- </params>
383
- </features>
384
- <focus_type>
385
- <class>eems_affiliate/map</class>
386
- <method>getDataValue</method>
387
- <type>helper</type>
388
- <column_name>focus_type</column_name>
389
- <params>
390
- <format>%.128s</format>
391
- </params>
392
- </focus_type>
393
- <format>
394
- <class>eems_affiliate/map</class>
395
- <method>getDataValue</method>
396
- <type>helper</type>
397
- <column_name>format</column_name>
398
- <params>
399
- <format>%.64s</format>
400
- </params>
401
- </format>
402
- <functions>
403
- <class>eems_affiliate/map</class>
404
- <method>getDataValue</method>
405
- <type>helper</type>
406
- <column_name>functions</column_name>
407
- <params>
408
- <format>%.64s</format>
409
- </params>
410
- </functions>
411
- <genre>
412
- <class>eems_affiliate/map</class>
413
- <method>getDataValue</method>
414
- <type>helper</type>
415
- <column_name>genre</column_name>
416
- <params>
417
- <format>%.64s</format>
418
- </params>
419
- </genre>
420
- <heel_height>
421
- <class>eems_affiliate/map</class>
422
- <method>getDataValue</method>
423
- <type>helper</type>
424
- <column_name>heel_height</column_name>
425
- <params>
426
- <format>%.32s</format>
427
- </params>
428
- </heel_height>
429
- <height>
430
- <class>eems_affiliate/map</class>
431
- <method>getDataValue</method>
432
- <type>helper</type>
433
- <column_name>height</column_name>
434
- <params>
435
- <format>%.32s</format>
436
- </params>
437
- </height>
438
- <image_thumb_url>
439
- <class>eems_affiliate/map_product</class>
440
- <method>getImageUrl</method>
441
- <type>helper</type>
442
- <column_name>image_thumb_url</column_name>
443
- <params>
444
- <format>%.2000s</format>
445
- </params>
446
- </image_thumb_url>
447
- <image_url>
448
- <class>eems_affiliate/map_product</class>
449
- <method>getImageUrl</method>
450
- <type>helper</type>
451
- <column_name>image_url</column_name>
452
- <params>
453
- <format>%.2000s</format>
454
- </params>
455
- </image_url>
456
- <installation>
457
- <class>eems_affiliate/map</class>
458
- <method>getDataValue</method>
459
- <type>helper</type>
460
- <column_name>installation</column_name>
461
- <params>
462
- <format>%.64s</format>
463
- </params>
464
- </installation>
465
- <in_stock>
466
- <class>eems_affiliate/map_product</class>
467
- <method>getInStockYesNo</method>
468
- <type>helper</type>
469
- <column_name>in_stock</column_name>
470
- <params>
471
- <format>%s</format>
472
- </params>
473
- </in_stock>
474
- <isbn>
475
- <class>eems_affiliate/map</class>
476
- <method>getDataValue</method>
477
- <type>helper</type>
478
- <column_name>isbn</column_name>
479
- <params>
480
- <format>%.64s</format>
481
- </params>
482
- </isbn>
483
- <keywords>
484
- <class>eems_affiliate/map</class>
485
- <method>getDataValue</method>
486
- <type>helper</type>
487
- <column_name>keywords</column_name>
488
- <params>
489
- <format>%.256s</format>
490
- </params>
491
- </keywords>
492
- <length>
493
- <class>eems_affiliate/map</class>
494
- <method>getDataValue</method>
495
- <type>helper</type>
496
- <column_name>length</column_name>
497
- <params>
498
- <format>%.32s</format>
499
- </params>
500
- </length>
501
- <load_type>
502
- <class>eems_affiliate/map</class>
503
- <method>getDataValue</method>
504
- <type>helper</type>
505
- <column_name>load_type</column_name>
506
- <params>
507
- <format>%.32s</format>
508
- </params>
509
- </load_type>
510
- <location>
511
- <class>eems_affiliate/map</class>
512
- <method>getDataValue</method>
513
- <type>helper</type>
514
- <column_name>location</column_name>
515
- <params>
516
- <format>%.64s</format>
517
- </params>
518
- </location>
519
- <made_in>
520
- <class>eems_affiliate/map</class>
521
- <method>getDataValue</method>
522
- <type>helper</type>
523
- <column_name>made_in</column_name>
524
- <params>
525
- <format>%.64s</format>
526
- </params>
527
- </made_in>
528
- <manufacturer>
529
- <class>eems_affiliate/map</class>
530
- <method>getDataValue</method>
531
- <type>helper</type>
532
- <column_name>manufacturer</column_name>
533
- <params>
534
- <format>%.128s</format>
535
- </params>
536
- </manufacturer>
537
- <material>
538
- <class>eems_affiliate/map</class>
539
- <method>getDataValue</method>
540
- <type>helper</type>
541
- <column_name>material</column_name>
542
- <params>
543
- <format>%.128s</format>
544
- </params>
545
- </material>
546
- <megapixels>
547
- <class>eems_affiliate/map</class>
548
- <method>getDataValue</method>
549
- <type>helper</type>
550
- <column_name>megapixels</column_name>
551
- <params>
552
- <format>%01.2f</format>
553
- </params>
554
- </megapixels>
555
- <memory_capacity>
556
- <class>eems_affiliate/map</class>
557
- <method>getDataValue</method>
558
- <type>helper</type>
559
- <column_name>memory_capacity</column_name>
560
- <params>
561
- <format>%.64s</format>
562
- </params>
563
- </memory_capacity>
564
- <memory_card_slot>
565
- <class>eems_affiliate/map</class>
566
- <method>getDataValue</method>
567
- <type>helper</type>
568
- <column_name>memory_card_slot</column_name>
569
- <params>
570
- <format>%.32s</format>
571
- </params>
572
- </memory_card_slot>
573
- <memory_type>
574
- <class>eems_affiliate/map</class>
575
- <method>getDataValue</method>
576
- <type>helper</type>
577
- <column_name>memory_type</column_name>
578
- <params>
579
- <format>%.64s</format>
580
- </params>
581
- </memory_type>
582
- <model_number>
583
- <class>eems_affiliate/map</class>
584
- <method>getDataValue</method>
585
- <type>helper</type>
586
- <column_name>model_number</column_name>
587
- <params>
588
- <format>%.128s</format>
589
- </params>
590
- </model_number>
591
- <mpn>
592
- <class>eems_affiliate/map</class>
593
- <method>getDataValue</method>
594
- <type>helper</type>
595
- <column_name>mpn</column_name>
596
- <params>
597
- <format>%.128s</format>
598
- </params>
599
- </mpn>
600
- <name>
601
- <class>eems_affiliate/map</class>
602
- <method>getDataValue</method>
603
- <type>helper</type>
604
- <column_name>name</column_name>
605
- <params>
606
- <format>%.128s</format>
607
- </params>
608
- </name>
609
- <occasion>
610
- <class>eems_affiliate/map</class>
611
- <method>getDataValue</method>
612
- <type>helper</type>
613
- <column_name>occasion</column_name>
614
- <params>
615
- <format>%.128s</format>
616
- </params>
617
- </occasion>
618
- <operating_system>
619
- <class>eems_affiliate/map</class>
620
- <method>getDataValue</method>
621
- <type>helper</type>
622
- <column_name>operating_system</column_name>
623
- <params>
624
- <format>%.128s</format>
625
- </params>
626
- </operating_system>
627
- <optical_drive>
628
- <class>eems_affiliate/map</class>
629
- <method>getDataValue</method>
630
- <type>helper</type>
631
- <column_name>optical_drive</column_name>
632
- <params>
633
- <format>%.64s</format>
634
- </params>
635
- </optical_drive>
636
- <pages>
637
- <class>eems_affiliate/map</class>
638
- <method>getDataValue</method>
639
- <type>helper</type>
640
- <column_name>pages</column_name>
641
- <params>
642
- <format>%.11d</format>
643
- </params>
644
- </pages>
645
- <payment_accepted>
646
- <class>eems_affiliate/map</class>
647
- <method>getDataValue</method>
648
- <type>helper</type>
649
- <column_name>payment_accepted</column_name>
650
- <params>
651
- <format>%.128s</format>
652
- </params>
653
- </payment_accepted>
654
- <payment_notes>
655
- <class>eems_affiliate/map</class>
656
- <method>getDataValue</method>
657
- <type>helper</type>
658
- <column_name>payment_notes</column_name>
659
- <params>
660
- <format>%.256s</format>
661
- </params>
662
- </payment_notes>
663
- <platform>
664
- <class>eems_affiliate/map</class>
665
- <method>getDataValue</method>
666
- <type>helper</type>
667
- <column_name>platform</column_name>
668
- <params>
669
- <format>%.64s</format>
670
- </params>
671
- </platform>
672
- <price>
673
- <class>eems_affiliate/map</class>
674
- <method>getDataValue</method>
675
- <type>helper</type>
676
- <column_name>price</column_name>
677
- <params>
678
- <format>%01.2f</format>
679
- </params>
680
- </price>
681
- <price_retail>
682
- <class>eems_affiliate/map</class>
683
- <method>getDataValue</method>
684
- <type>helper</type>
685
- <column_name>price_retail</column_name>
686
- <params>
687
- <format>%01.2f</format>
688
- </params>
689
- </price_retail>
690
- <price_sale>
691
- <class>eems_affiliate/map</class>
692
- <method>getDataValue</method>
693
- <type>helper</type>
694
- <column_name>price_sale</column_name>
695
- <params>
696
- <format>%01.2f</format>
697
- </params>
698
- </price_sale>
699
- <price_shipping>
700
- <class>eems_affiliate/map</class>
701
- <method>getDataValue</method>
702
- <type>helper</type>
703
- <column_name>price_shipping</column_name>
704
- <params>
705
- <format>%01.2f</format>
706
- </params>
707
- </price_shipping>
708
- <processor>
709
- <class>eems_affiliate/map</class>
710
- <method>getDataValue</method>
711
- <type>helper</type>
712
- <column_name>processor</column_name>
713
- <params>
714
- <format>%.64s</format>
715
- </params>
716
- </processor>
717
- <publisher>
718
- <class>eems_affiliate/map</class>
719
- <method>getDataValue</method>
720
- <type>helper</type>
721
- <column_name>publisher</column_name>
722
- <params>
723
- <format>%.128s</format>
724
- </params>
725
- </publisher>
726
- <quantity_in_stock>
727
- <class>eems_affiliate/map_product</class>
728
- <method>getInStockQty</method>
729
- <type>helper</type>
730
- <column_name>quantity_in_stock</column_name>
731
- <params>
732
- <format>%.11d</format>
733
- </params>
734
- </quantity_in_stock>
735
- <rating>
736
- <class>eems_affiliate/map</class>
737
- <method>getDataValue</method>
738
- <type>helper</type>
739
- <column_name>rating</column_name>
740
- <params>
741
- <format>%.32s</format>
742
- </params>
743
- </rating>
744
- <recommended_usage>
745
- <class>eems_affiliate/map</class>
746
- <method>getDataValue</method>
747
- <type>helper</type>
748
- <column_name>recommended_usage</column_name>
749
- <params>
750
- <format>%.128s</format>
751
- </params>
752
- </recommended_usage>
753
- <resolution>
754
- <class>eems_affiliate/map</class>
755
- <method>getDataValue</method>
756
- <type>helper</type>
757
- <column_name>resolution</column_name>
758
- <params>
759
- <format>%.64s</format>
760
- </params>
761
- </resolution>
762
- <screen_size>
763
- <class>eems_affiliate/map</class>
764
- <method>getDataValue</method>
765
- <type>helper</type>
766
- <column_name>screen_size</column_name>
767
- <params>
768
- <format>%.32s</format>
769
- </params>
770
- </screen_size>
771
- <shipping_method>
772
- <class>eems_affiliate/map</class>
773
- <method>getDataValue</method>
774
- <type>helper</type>
775
- <column_name>shipping_method</column_name>
776
- <params>
777
- <format>%.64s</format>
778
- </params>
779
- </shipping_method>
780
- <shoe_size>
781
- <class>eems_affiliate/map</class>
782
- <method>getDataValue</method>
783
- <type>helper</type>
784
- <column_name>shoe_size</column_name>
785
- <params>
786
- <format>%.32s</format>
787
- </params>
788
- </shoe_size>
789
- <shoe_width>
790
- <class>eems_affiliate/map</class>
791
- <method>getDataValue</method>
792
- <type>helper</type>
793
- <column_name>shoe_width</column_name>
794
- <params>
795
- <format>%.32s</format>
796
- </params>
797
- </shoe_width>
798
- <size>
799
- <class>eems_affiliate/map</class>
800
- <method>getDataValue</method>
801
- <type>helper</type>
802
- <column_name>size</column_name>
803
- <params>
804
- <format>%.32s</format>
805
- </params>
806
- </size>
807
- <sku>
808
- <class>eems_affiliate/map</class>
809
- <method>getDataValue</method>
810
- <type>helper</type>
811
- <column_name>sku</column_name>
812
- <params>
813
- <format>%.128s</format>
814
- </params>
815
- </sku>
816
- <staring>
817
- <class>eems_affiliate/map</class>
818
- <method>getDataValue</method>
819
- <type>helper</type>
820
- <column_name>staring</column_name>
821
- <params>
822
- <format>%.128s</format>
823
- </params>
824
- </staring>
825
- <style>
826
- <class>eems_affiliate/map</class>
827
- <method>getDataValue</method>
828
- <type>helper</type>
829
- <column_name>style</column_name>
830
- <params>
831
- <format>%.64s</format>
832
- </params>
833
- </style>
834
- <tech_spec_url>
835
- <class>eems_affiliate/map</class>
836
- <method>getDataValue</method>
837
- <type>helper</type>
838
- <column_name>tech_spec_url</column_name>
839
- <params>
840
- <format>%.2000s</format>
841
- </params>
842
- </tech_spec_url>
843
- <tracks>
844
- <class>eems_affiliate/map</class>
845
- <method>getDataValue</method>
846
- <type>helper</type>
847
- <column_name>tracks</column_name>
848
- <params>
849
- <format>%.11d</format>
850
- </params>
851
- </tracks>
852
- <upc>
853
- <class>eems_affiliate/map</class>
854
- <method>getDataValue</method>
855
- <type>helper</type>
856
- <column_name>upc</column_name>
857
- <params>
858
- <format>%.128s</format>
859
- </params>
860
- </upc>
861
- <weight>
862
- <class>eems_affiliate/map</class>
863
- <method>getDataValue</method>
864
- <type>helper</type>
865
- <column_name>weight</column_name>
866
- <params>
867
- <format>%.32s</format>
868
- </params>
869
- </weight>
870
- <width>
871
- <class>eems_affiliate/map</class>
872
- <method>getDataValue</method>
873
- <type>helper</type>
874
- <column_name>width</column_name>
875
- <params>
876
- <format>%.32s</format>
877
- </params>
878
- </width>
879
- <wireless_interface>
880
- <class>eems_affiliate/map</class>
881
- <method>getDataValue</method>
882
- <type>helper</type>
883
- <column_name>wireless_interface</column_name>
884
- <params>
885
- <format>%.32s</format>
886
- </params>
887
- </wireless_interface>
888
- <year>
889
- <class>eems_affiliate/map</class>
890
- <method>getYearValue</method>
891
- <type>helper</type>
892
- <column_name>year</column_name>
893
- <params>
894
- <format>%.dd</format>
895
- </params>
896
- </year>
897
- <zoom>
898
- <class>eems_affiliate/map</class>
899
- <method>getDataValue</method>
900
- <type>helper</type>
901
- <column_name>zoom</column_name>
902
- <params>
903
- <format>%.32s</format>
904
- </params>
905
- </zoom>
906
- </callback_mappings>
907
- <order_dynamic>
908
- <fields>dynamic_program_id,dynamic_item_order_id,dynamic_item_id,dynamic_item_price,item_quantity,category,new_to_file</fields>
909
- <file_name_format>%s_transactions_corrected_%s.csv</file_name_format>
910
- </order_dynamic>
911
- <order_itemized>
912
- <fields>program_id,item_order_id,item_id,item_price,item_quantity,reason</fields>
913
- <file_name_format>%s_transactions_corrected_%s.csv</file_name_format>
914
- </order_itemized>
915
- <order_basic>
916
- <fields>program_id,order_amount,order_id,reason,transaction_type</fields>
917
- <file_name_format>%s_transactions_corrected_%s.csv</file_name_format>
918
- </order_basic>
919
- <product>
920
- <file_name_format>%s_product_feed.csv</file_name_format>
921
- </product>
922
- </feeds>
923
- </eems_affiliate>
924
- <eems_affiliate_product_attribute_map>
925
- <!--
926
- The purpose of this mapping is enabled the coexistence of both
927
- pre-configured product attributes mapping and configured attributes
928
- mapping for the affiliate product feed. This means that when this
929
- module is installed and no other attribute is configured for the
930
- product feed the required pre-mapped attributes will be sufficient
931
- enough to generate a valid product feed.
932
- -->
933
- <age_range/>
934
- <artist/>
935
- <aspect_ratio/>
936
- <author/>
937
- <battery_life/>
938
- <binding/>
939
- <buy_url>product_url</buy_url>
940
- <category_network/>
941
- <category_program>category</category_program>
942
- <color/>
943
- <color_output/>
944
- <condition/>
945
- <description_long>description</description_long>
946
- <description_short>short_description</description_short>
947
- <director/>
948
- <discontinued/>
949
- <display_type/>
950
- <edition/>
951
- <expiration_date/>
952
- <features/>
953
- <focus_type/>
954
- <format/>
955
- <functions/>
956
- <genre/>
957
- <heel_height/>
958
- <height/>
959
- <image_thumb_url>thumbnail</image_thumb_url>
960
- <image_url>image</image_url>
961
- <installation/>
962
- <in_stock/>
963
- <isbn/>
964
- <keywords>meta_keyword</keywords>
965
- <length/>
966
- <load_type/>
967
- <location/>
968
- <made_in/>
969
- <manufacturer>manufacturer</manufacturer>
970
- <material/>
971
- <megapixels/>
972
- <memory_capacity/>
973
- <memory_card_slot/>
974
- <memory_type/>
975
- <model_number/>
976
- <mpn/>
977
- <name>name</name>
978
- <occasion/>
979
- <operating_system/>
980
- <optical_drive/>
981
- <pages/>
982
- <payment_accepted/>
983
- <payment_notes/>
984
- <platform/>
985
- <price>price</price>
986
- <price_retail>msrp</price_retail>
987
- <price_sale>special_price</price_sale>
988
- <price_shipping/>
989
- <processor/>
990
- <publisher/>
991
- <quantity_in_stock>qty</quantity_in_stock>
992
- <rating/>
993
- <recommended_usage/>
994
- <resolution/>
995
- <screen_size/>
996
- <shipping_method/>
997
- <shoe_size/>
998
- <shoe_width/>
999
- <size/>
1000
- <sku>sku</sku>
1001
- <staring/>
1002
- <style/>
1003
- <tech_spec_url/>
1004
- <tracks/>
1005
- <upc/>
1006
- <weight/>
1007
- <width/>
1008
- <wireless_interface/>
1009
- <year/>
1010
- <zoom/>
1011
- </eems_affiliate_product_attribute_map>
1012
- </marketing_solutions>
1013
- </default>
1014
- <frontend>
1015
- <layout>
1016
- <updates>
1017
- <eems_affiliate>
1018
- <file>eems_affiliate.xml</file>
1019
- </eems_affiliate>
1020
- </updates>
1021
- </layout>
1022
- </frontend>
1023
- <phpunit>
1024
- <suite>
1025
- <modules>
1026
- <EbayEnterprise_Affiliate/>
1027
- </modules>
1028
- </suite>
1029
- </phpunit>
1030
- </config>
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!--
3
+ Copyright (c) 2014 eBay Enterprise, Inc.
4
+
5
+ NOTICE OF LICENSE
6
+
7
+ This source file is subject to the eBay Enterprise
8
+ Magento Extensions End User License Agreement
9
+ that is bundled with this package in the file LICENSE.md.
10
+ It is also available through the world-wide-web at this URL:
11
+ http://www.ebayenterprise.com/files/pdf/Magento_Connect_Extensions_EULA_050714.pdf
12
+
13
+ @copyright Copyright (c) 2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/)
14
+ @license http://www.ebayenterprise.com/files/pdf/Magento_Connect_Extensions_EULA_050714.pdf eBay Enterprise Magento Extensions End User License Agreement
15
+ -->
16
+ <config>
17
+ <modules>
18
+ <EbayEnterprise_Affiliate>
19
+ <version>1.2.1.0</version>
20
+ </EbayEnterprise_Affiliate>
21
+ </modules>
22
+ <global>
23
+ <models>
24
+ <eems_affiliate>
25
+ <class>EbayEnterprise_Affiliate_Model</class>
26
+ </eems_affiliate>
27
+ </models>
28
+ <helpers>
29
+ <eems_affiliate>
30
+ <class>EbayEnterprise_Affiliate_Helper</class>
31
+ </eems_affiliate>
32
+ </helpers>
33
+ <blocks>
34
+ <eems_affiliate>
35
+ <class>EbayEnterprise_Affiliate_Block</class>
36
+ </eems_affiliate>
37
+ </blocks>
38
+ <resources>
39
+ <eems_affiliate_setup>
40
+ <setup>
41
+ <module>EbayEnterprise_Affiliate</module>
42
+ <class>Mage_Core_Model_Resource_Setup</class>
43
+ </setup>
44
+ </eems_affiliate_setup>
45
+ </resources>
46
+ </global>
47
+ <crontab>
48
+ <jobs>
49
+ <eems_affiliate_generate_product_feed>
50
+ <schedule>
51
+ <cron_expr>0 3 * * *</cron_expr>
52
+ </schedule>
53
+ <run>
54
+ <model>eems_affiliate/observer::createProductFeed</model>
55
+ </run>
56
+ </eems_affiliate_generate_product_feed>
57
+ <eems_affiliate_generate_corrected_order_feed>
58
+ <schedule>
59
+ <cron_expr>0 3 * * *</cron_expr>
60
+ </schedule>
61
+ <run>
62
+ <model>eems_affiliate/observer::createCorrectedOrdersFeed</model>
63
+ </run>
64
+ </eems_affiliate_generate_corrected_order_feed>
65
+ </jobs>
66
+ </crontab>
67
+ <default>
68
+ <marketing_solutions>
69
+ <eems_affiliate>
70
+ <active>0</active>
71
+ <js_files>eems_affiliate/cookie.js</js_files>
72
+ <!-- use comma to add more js files-->
73
+ <beacon_url>https://t.pepperjamnetwork.com/track</beacon_url>
74
+ <export_path>var/export/eems_affiliate/</export_path>
75
+ <order_type>itemized</order_type>
76
+ <program_id/>
77
+ <transaction_type>1</transaction_type>
78
+ <conditional_pixel_enabled>0</conditional_pixel_enabled>
79
+ <source_key_name>eean</source_key_name>
80
+ <product_feed_enabled>1</product_feed_enabled>
81
+ <order_feed_enabled>1</order_feed_enabled>
82
+ <feeds>
83
+ <callback_mappings>
84
+ <program_id>
85
+ <class>eems_affiliate/map</class>
86
+ <method>getProgramId</method>
87
+ <type>helper</type>
88
+ <column_name>PID</column_name>
89
+ </program_id>
90
+ <order_id>
91
+ <class>eems_affiliate/map_order</class>
92
+ <method>getOrderId</method>
93
+ <type>helper</type>
94
+ <column_name>OID</column_name>
95
+ <params>
96
+ <format>%.50s</format>
97
+ </params>
98
+ </order_id>
99
+ <item_order_id>
100
+ <class>eems_affiliate/map_order</class>
101
+ <method>getItemOrderId</method>
102
+ <type>helper</type>
103
+ <column_name>OID</column_name>
104
+ <params>
105
+ <format>%.50s</format>
106
+ </params>
107
+ </item_order_id>
108
+ <item_id>
109
+ <class>eems_affiliate/map_order</class>
110
+ <method>getItemId</method>
111
+ <type>helper</type>
112
+ <column_name>ITEMID</column_name>
113
+ <params>
114
+ <format>%.50s</format>
115
+ <key>sku</key>
116
+ </params>
117
+ </item_id>
118
+ <item_price>
119
+ <class>eems_affiliate/map_order</class>
120
+ <method>getItemPrice</method>
121
+ <type>helper</type>
122
+ <column_name>AMOUNT</column_name>
123
+ <params>
124
+ <format>%.2f</format>
125
+ </params>
126
+ </item_price>
127
+ <item_quantity>
128
+ <class>eems_affiliate/map_order</class>
129
+ <method>getItemQuantity</method>
130
+ <type>helper</type>
131
+ <column_name>QUANTITY</column_name>
132
+ </item_quantity>
133
+ <dynamic_program_id>
134
+ <class>eems_affiliate/map</class>
135
+ <method>getProgramId</method>
136
+ <type>helper</type>
137
+ <column_name>PROGRAM_ID</column_name>
138
+ </dynamic_program_id>
139
+ <dynamic_item_order_id>
140
+ <class>eems_affiliate/map_order</class>
141
+ <method>getItemOrderId</method>
142
+ <type>helper</type>
143
+ <column_name>ORDER_ID</column_name>
144
+ <params>
145
+ <format>%.50s</format>
146
+ </params>
147
+ </dynamic_item_order_id>
148
+ <dynamic_item_id>
149
+ <class>eems_affiliate/map_order</class>
150
+ <method>getItemId</method>
151
+ <type>helper</type>
152
+ <column_name>ITEM_ID</column_name>
153
+ <params>
154
+ <format>%.50s</format>
155
+ <key>sku</key>
156
+ </params>
157
+ </dynamic_item_id>
158
+ <dynamic_item_price>
159
+ <class>eems_affiliate/map_order</class>
160
+ <method>getItemPrice</method>
161
+ <type>helper</type>
162
+ <column_name>ITEM_PRICE</column_name>
163
+ <params>
164
+ <format>%.2f</format>
165
+ </params>
166
+ </dynamic_item_price>
167
+ <category>
168
+ <class>eems_affiliate/map_order</class>
169
+ <method>getCategory</method>
170
+ <type>helper</type>
171
+ <column_name>CATEGORY</column_name>
172
+ </category>
173
+ <new_to_file>
174
+ <class>eems_affiliate/map_order</class>
175
+ <method>getNewToFile</method>
176
+ <type>helper</type>
177
+ <column_name>NEW_TO_FILE</column_name>
178
+ </new_to_file>
179
+ <order_amount>
180
+ <class>eems_affiliate/map_order</class>
181
+ <method>getOrderAmount</method>
182
+ <type>helper</type>
183
+ <column_name>AMOUNT</column_name>
184
+ <params>
185
+ <format>%.2f</format>
186
+ </params>
187
+ </order_amount>
188
+ <reason>
189
+ <class>eems_affiliate/map</class>
190
+ <method>passStatic</method>
191
+ <type>helper</type>
192
+ <column_name>REASON</column_name>
193
+ <params>
194
+ <value>8</value>
195
+ </params>
196
+ </reason>
197
+ <transaction_type>
198
+ <class>eems_affiliate/map_order</class>
199
+ <method>getTransactionType</method>
200
+ <type>helper</type>
201
+ <column_name>TYPE</column_name>
202
+ </transaction_type>
203
+ <age_range>
204
+ <class>eems_affiliate/map</class>
205
+ <method>getDataValue</method>
206
+ <type>helper</type>
207
+ <column_name>age_range</column_name>
208
+ <params>
209
+ <format>%.32s</format>
210
+ </params>
211
+ </age_range>
212
+ <artist>
213
+ <class>eems_affiliate/map</class>
214
+ <method>getDataValue</method>
215
+ <type>helper</type>
216
+ <column_name>artist</column_name>
217
+ <params>
218
+ <format>%.128s</format>
219
+ </params>
220
+ </artist>
221
+ <aspect_ratio>
222
+ <class>eems_affiliate/map</class>
223
+ <method>getDataValue</method>
224
+ <type>helper</type>
225
+ <column_name>aspect_ratio</column_name>
226
+ <params>
227
+ <format>%.16s</format>
228
+ </params>
229
+ </aspect_ratio>
230
+ <author>
231
+ <class>eems_affiliate/map</class>
232
+ <method>getDataValue</method>
233
+ <type>helper</type>
234
+ <column_name>author</column_name>
235
+ <params>
236
+ <format>%.128s</format>
237
+ </params>
238
+ </author>
239
+ <battery_life>
240
+ <class>eems_affiliate/map</class>
241
+ <method>getDataValue</method>
242
+ <type>helper</type>
243
+ <column_name>battery_life</column_name>
244
+ <params>
245
+ <format>%.32s</format>
246
+ </params>
247
+ </battery_life>
248
+ <binding>
249
+ <class>eems_affiliate/map</class>
250
+ <method>getDataValue</method>
251
+ <type>helper</type>
252
+ <column_name>binding</column_name>
253
+ <params>
254
+ <format>%.32s</format>
255
+ </params>
256
+ </binding>
257
+ <buy_url>
258
+ <class>eems_affiliate/map</class>
259
+ <method>getDataValue</method>
260
+ <type>helper</type>
261
+ <column_name>buy_url</column_name>
262
+ <params>
263
+ <key>product_url</key>
264
+ <format>%.2000s</format>
265
+ </params>
266
+ </buy_url>
267
+ <category_network>
268
+ <class>eems_affiliate/map_product</class>
269
+ <method>getCategory</method>
270
+ <type>helper</type>
271
+ <column_name>category_network</column_name>
272
+ <params>
273
+ <format>%.256s</format>
274
+ </params>
275
+ </category_network>
276
+ <category_program>
277
+ <class>eems_affiliate/map_product</class>
278
+ <method>getCategory</method>
279
+ <type>helper</type>
280
+ <column_name>category_program</column_name>
281
+ <params>
282
+ <format>%.256s</format>
283
+ </params>
284
+ </category_program>
285
+ <color>
286
+ <class>eems_affiliate/map</class>
287
+ <method>getDataValue</method>
288
+ <type>helper</type>
289
+ <column_name>color</column_name>
290
+ <params>
291
+ <format>%.32s</format>
292
+ </params>
293
+ </color>
294
+ <color_output>
295
+ <class>eems_affiliate/map</class>
296
+ <method>getValueYesNo</method>
297
+ <type>helper</type>
298
+ <column_name>color_output</column_name>
299
+ <params>
300
+ <format>%s</format>
301
+ </params>
302
+ </color_output>
303
+ <condition>
304
+ <class>eems_affiliate/map</class>
305
+ <method>getDataValue</method>
306
+ <type>helper</type>
307
+ <column_name>condition</column_name>
308
+ <params>
309
+ <format>%.64s</format>
310
+ </params>
311
+ </condition>
312
+ <description_long>
313
+ <class>eems_affiliate/map</class>
314
+ <method>getDataValue</method>
315
+ <type>helper</type>
316
+ <column_name>description_long</column_name>
317
+ <params>
318
+ <format>%.2000s</format>
319
+ </params>
320
+ </description_long>
321
+ <description_short>
322
+ <class>eems_affiliate/map</class>
323
+ <method>getDataValue</method>
324
+ <type>helper</type>
325
+ <column_name>description_short</column_name>
326
+ <params>
327
+ <format>%.512s</format>
328
+ </params>
329
+ </description_short>
330
+ <director>
331
+ <class>eems_affiliate/map</class>
332
+ <method>getDataValue</method>
333
+ <type>helper</type>
334
+ <column_name>director</column_name>
335
+ <params>
336
+ <format>%.128s</format>
337
+ </params>
338
+ </director>
339
+ <discontinued>
340
+ <class>eems_affiliate/map</class>
341
+ <method>getValueYesNo</method>
342
+ <type>helper</type>
343
+ <column_name>discontinued</column_name>
344
+ <params>
345
+ <format>%s</format>
346
+ </params>
347
+ </discontinued>
348
+ <display_type>
349
+ <class>eems_affiliate/map</class>
350
+ <method>getDataValue</method>
351
+ <type>helper</type>
352
+ <column_name>display_type</column_name>
353
+ <params>
354
+ <format>%.32s</format>
355
+ </params>
356
+ </display_type>
357
+ <edition>
358
+ <class>eems_affiliate/map</class>
359
+ <method>getDataValue</method>
360
+ <type>helper</type>
361
+ <column_name>edition</column_name>
362
+ <params>
363
+ <format>%.32s</format>
364
+ </params>
365
+ </edition>
366
+ <expiration_date>
367
+ <class>eems_affiliate/map</class>
368
+ <method>getDateValue</method>
369
+ <type>helper</type>
370
+ <column_name>expiration_date</column_name>
371
+ <params>
372
+ <format>Y-m-d</format>
373
+ </params>
374
+ </expiration_date>
375
+ <features>
376
+ <class>eems_affiliate/map</class>
377
+ <method>getDataValue</method>
378
+ <type>helper</type>
379
+ <column_name>features</column_name>
380
+ <params>
381
+ <format>%.128s</format>
382
+ </params>
383
+ </features>
384
+ <focus_type>
385
+ <class>eems_affiliate/map</class>
386
+ <method>getDataValue</method>
387
+ <type>helper</type>
388
+ <column_name>focus_type</column_name>
389
+ <params>
390
+ <format>%.128s</format>
391
+ </params>
392
+ </focus_type>
393
+ <format>
394
+ <class>eems_affiliate/map</class>
395
+ <method>getDataValue</method>
396
+ <type>helper</type>
397
+ <column_name>format</column_name>
398
+ <params>
399
+ <format>%.64s</format>
400
+ </params>
401
+ </format>
402
+ <functions>
403
+ <class>eems_affiliate/map</class>
404
+ <method>getDataValue</method>
405
+ <type>helper</type>
406
+ <column_name>functions</column_name>
407
+ <params>
408
+ <format>%.64s</format>
409
+ </params>
410
+ </functions>
411
+ <genre>
412
+ <class>eems_affiliate/map</class>
413
+ <method>getDataValue</method>
414
+ <type>helper</type>
415
+ <column_name>genre</column_name>
416
+ <params>
417
+ <format>%.64s</format>
418
+ </params>
419
+ </genre>
420
+ <heel_height>
421
+ <class>eems_affiliate/map</class>
422
+ <method>getDataValue</method>
423
+ <type>helper</type>
424
+ <column_name>heel_height</column_name>
425
+ <params>
426
+ <format>%.32s</format>
427
+ </params>
428
+ </heel_height>
429
+ <height>
430
+ <class>eems_affiliate/map</class>
431
+ <method>getDataValue</method>
432
+ <type>helper</type>
433
+ <column_name>height</column_name>
434
+ <params>
435
+ <format>%.32s</format>
436
+ </params>
437
+ </height>
438
+ <image_thumb_url>
439
+ <class>eems_affiliate/map_product</class>
440
+ <method>getImageUrl</method>
441
+ <type>helper</type>
442
+ <column_name>image_thumb_url</column_name>
443
+ <params>
444
+ <format>%.2000s</format>
445
+ </params>
446
+ </image_thumb_url>
447
+ <image_url>
448
+ <class>eems_affiliate/map_product</class>
449
+ <method>getImageUrl</method>
450
+ <type>helper</type>
451
+ <column_name>image_url</column_name>
452
+ <params>
453
+ <format>%.2000s</format>
454
+ </params>
455
+ </image_url>
456
+ <installation>
457
+ <class>eems_affiliate/map</class>
458
+ <method>getDataValue</method>
459
+ <type>helper</type>
460
+ <column_name>installation</column_name>
461
+ <params>
462
+ <format>%.64s</format>
463
+ </params>
464
+ </installation>
465
+ <in_stock>
466
+ <class>eems_affiliate/map_product</class>
467
+ <method>getInStockYesNo</method>
468
+ <type>helper</type>
469
+ <column_name>in_stock</column_name>
470
+ <params>
471
+ <format>%s</format>
472
+ </params>
473
+ </in_stock>
474
+ <isbn>
475
+ <class>eems_affiliate/map</class>
476
+ <method>getDataValue</method>
477
+ <type>helper</type>
478
+ <column_name>isbn</column_name>
479
+ <params>
480
+ <format>%.64s</format>
481
+ </params>
482
+ </isbn>
483
+ <keywords>
484
+ <class>eems_affiliate/map</class>
485
+ <method>getDataValue</method>
486
+ <type>helper</type>
487
+ <column_name>keywords</column_name>
488
+ <params>
489
+ <format>%.256s</format>
490
+ </params>
491
+ </keywords>
492
+ <length>
493
+ <class>eems_affiliate/map</class>
494
+ <method>getDataValue</method>
495
+ <type>helper</type>
496
+ <column_name>length</column_name>
497
+ <params>
498
+ <format>%.32s</format>
499
+ </params>
500
+ </length>
501
+ <load_type>
502
+ <class>eems_affiliate/map</class>
503
+ <method>getDataValue</method>
504
+ <type>helper</type>
505
+ <column_name>load_type</column_name>
506
+ <params>
507
+ <format>%.32s</format>
508
+ </params>
509
+ </load_type>
510
+ <location>
511
+ <class>eems_affiliate/map</class>
512
+ <method>getDataValue</method>
513
+ <type>helper</type>
514
+ <column_name>location</column_name>
515
+ <params>
516
+ <format>%.64s</format>
517
+ </params>
518
+ </location>
519
+ <made_in>
520
+ <class>eems_affiliate/map</class>
521
+ <method>getDataValue</method>
522
+ <type>helper</type>
523
+ <column_name>made_in</column_name>
524
+ <params>
525
+ <format>%.64s</format>
526
+ </params>
527
+ </made_in>
528
+ <manufacturer>
529
+ <class>eems_affiliate/map</class>
530
+ <method>getDataValue</method>
531
+ <type>helper</type>
532
+ <column_name>manufacturer</column_name>
533
+ <params>
534
+ <format>%.128s</format>
535
+ </params>
536
+ </manufacturer>
537
+ <material>
538
+ <class>eems_affiliate/map</class>
539
+ <method>getDataValue</method>
540
+ <type>helper</type>
541
+ <column_name>material</column_name>
542
+ <params>
543
+ <format>%.128s</format>
544
+ </params>
545
+ </material>
546
+ <megapixels>
547
+ <class>eems_affiliate/map</class>
548
+ <method>getDataValue</method>
549
+ <type>helper</type>
550
+ <column_name>megapixels</column_name>
551
+ <params>
552
+ <format>%01.2f</format>
553
+ </params>
554
+ </megapixels>
555
+ <memory_capacity>
556
+ <class>eems_affiliate/map</class>
557
+ <method>getDataValue</method>
558
+ <type>helper</type>
559
+ <column_name>memory_capacity</column_name>
560
+ <params>
561
+ <format>%.64s</format>
562
+ </params>
563
+ </memory_capacity>
564
+ <memory_card_slot>
565
+ <class>eems_affiliate/map</class>
566
+ <method>getDataValue</method>
567
+ <type>helper</type>
568
+ <column_name>memory_card_slot</column_name>
569
+ <params>
570
+ <format>%.32s</format>
571
+ </params>
572
+ </memory_card_slot>
573
+ <memory_type>
574
+ <class>eems_affiliate/map</class>
575
+ <method>getDataValue</method>
576
+ <type>helper</type>
577
+ <column_name>memory_type</column_name>
578
+ <params>
579
+ <format>%.64s</format>
580
+ </params>
581
+ </memory_type>
582
+ <model_number>
583
+ <class>eems_affiliate/map</class>
584
+ <method>getDataValue</method>
585
+ <type>helper</type>
586
+ <column_name>model_number</column_name>
587
+ <params>
588
+ <format>%.128s</format>
589
+ </params>
590
+ </model_number>
591
+ <mpn>
592
+ <class>eems_affiliate/map</class>
593
+ <method>getDataValue</method>
594
+ <type>helper</type>
595
+ <column_name>mpn</column_name>
596
+ <params>
597
+ <format>%.128s</format>
598
+ </params>
599
+ </mpn>
600
+ <name>
601
+ <class>eems_affiliate/map</class>
602
+ <method>getDataValue</method>
603
+ <type>helper</type>
604
+ <column_name>name</column_name>
605
+ <params>
606
+ <format>%.128s</format>
607
+ </params>
608
+ </name>
609
+ <occasion>
610
+ <class>eems_affiliate/map</class>
611
+ <method>getDataValue</method>
612
+ <type>helper</type>
613
+ <column_name>occasion</column_name>
614
+ <params>
615
+ <format>%.128s</format>
616
+ </params>
617
+ </occasion>
618
+ <operating_system>
619
+ <class>eems_affiliate/map</class>
620
+ <method>getDataValue</method>
621
+ <type>helper</type>
622
+ <column_name>operating_system</column_name>
623
+ <params>
624
+ <format>%.128s</format>
625
+ </params>
626
+ </operating_system>
627
+ <optical_drive>
628
+ <class>eems_affiliate/map</class>
629
+ <method>getDataValue</method>
630
+ <type>helper</type>
631
+ <column_name>optical_drive</column_name>
632
+ <params>
633
+ <format>%.64s</format>
634
+ </params>
635
+ </optical_drive>
636
+ <pages>
637
+ <class>eems_affiliate/map</class>
638
+ <method>getDataValue</method>
639
+ <type>helper</type>
640
+ <column_name>pages</column_name>
641
+ <params>
642
+ <format>%.11d</format>
643
+ </params>
644
+ </pages>
645
+ <payment_accepted>
646
+ <class>eems_affiliate/map</class>
647
+ <method>getDataValue</method>
648
+ <type>helper</type>
649
+ <column_name>payment_accepted</column_name>
650
+ <params>
651
+ <format>%.128s</format>
652
+ </params>
653
+ </payment_accepted>
654
+ <payment_notes>
655
+ <class>eems_affiliate/map</class>
656
+ <method>getDataValue</method>
657
+ <type>helper</type>
658
+ <column_name>payment_notes</column_name>
659
+ <params>
660
+ <format>%.256s</format>
661
+ </params>
662
+ </payment_notes>
663
+ <platform>
664
+ <class>eems_affiliate/map</class>
665
+ <method>getDataValue</method>
666
+ <type>helper</type>
667
+ <column_name>platform</column_name>
668
+ <params>
669
+ <format>%.64s</format>
670
+ </params>
671
+ </platform>
672
+ <price>
673
+ <class>eems_affiliate/map</class>
674
+ <method>getDataValue</method>
675
+ <type>helper</type>
676
+ <column_name>price</column_name>
677
+ <params>
678
+ <format>%01.2f</format>
679
+ </params>
680
+ </price>
681
+ <price_retail>
682
+ <class>eems_affiliate/map</class>
683
+ <method>getDataValue</method>
684
+ <type>helper</type>
685
+ <column_name>price_retail</column_name>
686
+ <params>
687
+ <format>%01.2f</format>
688
+ </params>
689
+ </price_retail>
690
+ <price_sale>
691
+ <class>eems_affiliate/map</class>
692
+ <method>getDataValue</method>
693
+ <type>helper</type>
694
+ <column_name>price_sale</column_name>
695
+ <params>
696
+ <format>%01.2f</format>
697
+ </params>
698
+ </price_sale>
699
+ <price_shipping>
700
+ <class>eems_affiliate/map</class>
701
+ <method>getDataValue</method>
702
+ <type>helper</type>
703
+ <column_name>price_shipping</column_name>
704
+ <params>
705
+ <format>%01.2f</format>
706
+ </params>
707
+ </price_shipping>
708
+ <processor>
709
+ <class>eems_affiliate/map</class>
710
+ <method>getDataValue</method>
711
+ <type>helper</type>
712
+ <column_name>processor</column_name>
713
+ <params>
714
+ <format>%.64s</format>
715
+ </params>
716
+ </processor>
717
+ <publisher>
718
+ <class>eems_affiliate/map</class>
719
+ <method>getDataValue</method>
720
+ <type>helper</type>
721
+ <column_name>publisher</column_name>
722
+ <params>
723
+ <format>%.128s</format>
724
+ </params>
725
+ </publisher>
726
+ <quantity_in_stock>
727
+ <class>eems_affiliate/map_product</class>
728
+ <method>getInStockQty</method>
729
+ <type>helper</type>
730
+ <column_name>quantity_in_stock</column_name>
731
+ <params>
732
+ <format>%.11d</format>
733
+ </params>
734
+ </quantity_in_stock>
735
+ <rating>
736
+ <class>eems_affiliate/map</class>
737
+ <method>getDataValue</method>
738
+ <type>helper</type>
739
+ <column_name>rating</column_name>
740
+ <params>
741
+ <format>%.32s</format>
742
+ </params>
743
+ </rating>
744
+ <recommended_usage>
745
+ <class>eems_affiliate/map</class>
746
+ <method>getDataValue</method>
747
+ <type>helper</type>
748
+ <column_name>recommended_usage</column_name>
749
+ <params>
750
+ <format>%.128s</format>
751
+ </params>
752
+ </recommended_usage>
753
+ <resolution>
754
+ <class>eems_affiliate/map</class>
755
+ <method>getDataValue</method>
756
+ <type>helper</type>
757
+ <column_name>resolution</column_name>
758
+ <params>
759
+ <format>%.64s</format>
760
+ </params>
761
+ </resolution>
762
+ <screen_size>
763
+ <class>eems_affiliate/map</class>
764
+ <method>getDataValue</method>
765
+ <type>helper</type>
766
+ <column_name>screen_size</column_name>
767
+ <params>
768
+ <format>%.32s</format>
769
+ </params>
770
+ </screen_size>
771
+ <shipping_method>
772
+ <class>eems_affiliate/map</class>
773
+ <method>getDataValue</method>
774
+ <type>helper</type>
775
+ <column_name>shipping_method</column_name>
776
+ <params>
777
+ <format>%.64s</format>
778
+ </params>
779
+ </shipping_method>
780
+ <shoe_size>
781
+ <class>eems_affiliate/map</class>
782
+ <method>getDataValue</method>
783
+ <type>helper</type>
784
+ <column_name>shoe_size</column_name>
785
+ <params>
786
+ <format>%.32s</format>
787
+ </params>
788
+ </shoe_size>
789
+ <shoe_width>
790
+ <class>eems_affiliate/map</class>
791
+ <method>getDataValue</method>
792
+ <type>helper</type>
793
+ <column_name>shoe_width</column_name>
794
+ <params>
795
+ <format>%.32s</format>
796
+ </params>
797
+ </shoe_width>
798
+ <size>
799
+ <class>eems_affiliate/map</class>
800
+ <method>getDataValue</method>
801
+ <type>helper</type>
802
+ <column_name>size</column_name>
803
+ <params>
804
+ <format>%.32s</format>
805
+ </params>
806
+ </size>
807
+ <sku>
808
+ <class>eems_affiliate/map</class>
809
+ <method>getDataValue</method>
810
+ <type>helper</type>
811
+ <column_name>sku</column_name>
812
+ <params>
813
+ <format>%.128s</format>
814
+ </params>
815
+ </sku>
816
+ <staring>
817
+ <class>eems_affiliate/map</class>
818
+ <method>getDataValue</method>
819
+ <type>helper</type>
820
+ <column_name>staring</column_name>
821
+ <params>
822
+ <format>%.128s</format>
823
+ </params>
824
+ </staring>
825
+ <style>
826
+ <class>eems_affiliate/map</class>
827
+ <method>getDataValue</method>
828
+ <type>helper</type>
829
+ <column_name>style</column_name>
830
+ <params>
831
+ <format>%.64s</format>
832
+ </params>
833
+ </style>
834
+ <tech_spec_url>
835
+ <class>eems_affiliate/map</class>
836
+ <method>getDataValue</method>
837
+ <type>helper</type>
838
+ <column_name>tech_spec_url</column_name>
839
+ <params>
840
+ <format>%.2000s</format>
841
+ </params>
842
+ </tech_spec_url>
843
+ <tracks>
844
+ <class>eems_affiliate/map</class>
845
+ <method>getDataValue</method>
846
+ <type>helper</type>
847
+ <column_name>tracks</column_name>
848
+ <params>
849
+ <format>%.11d</format>
850
+ </params>
851
+ </tracks>
852
+ <upc>
853
+ <class>eems_affiliate/map</class>
854
+ <method>getDataValue</method>
855
+ <type>helper</type>
856
+ <column_name>upc</column_name>
857
+ <params>
858
+ <format>%.128s</format>
859
+ </params>
860
+ </upc>
861
+ <weight>
862
+ <class>eems_affiliate/map</class>
863
+ <method>getDataValue</method>
864
+ <type>helper</type>
865
+ <column_name>weight</column_name>
866
+ <params>
867
+ <format>%.32s</format>
868
+ </params>
869
+ </weight>
870
+ <width>
871
+ <class>eems_affiliate/map</class>
872
+ <method>getDataValue</method>
873
+ <type>helper</type>
874
+ <column_name>width</column_name>
875
+ <params>
876
+ <format>%.32s</format>
877
+ </params>
878
+ </width>
879
+ <wireless_interface>
880
+ <class>eems_affiliate/map</class>
881
+ <method>getDataValue</method>
882
+ <type>helper</type>
883
+ <column_name>wireless_interface</column_name>
884
+ <params>
885
+ <format>%.32s</format>
886
+ </params>
887
+ </wireless_interface>
888
+ <year>
889
+ <class>eems_affiliate/map</class>
890
+ <method>getYearValue</method>
891
+ <type>helper</type>
892
+ <column_name>year</column_name>
893
+ <params>
894
+ <format>%.dd</format>
895
+ </params>
896
+ </year>
897
+ <zoom>
898
+ <class>eems_affiliate/map</class>
899
+ <method>getDataValue</method>
900
+ <type>helper</type>
901
+ <column_name>zoom</column_name>
902
+ <params>
903
+ <format>%.32s</format>
904
+ </params>
905
+ </zoom>
906
+ </callback_mappings>
907
+ <order_dynamic>
908
+ <fields>dynamic_program_id,dynamic_item_order_id,dynamic_item_id,dynamic_item_price,item_quantity,category,new_to_file</fields>
909
+ <file_name_format>%s_transactions_corrected_%s.csv</file_name_format>
910
+ </order_dynamic>
911
+ <order_itemized>
912
+ <fields>program_id,item_order_id,item_id,item_price,item_quantity,reason</fields>
913
+ <file_name_format>%s_transactions_corrected_%s.csv</file_name_format>
914
+ </order_itemized>
915
+ <order_basic>
916
+ <fields>program_id,order_amount,order_id,reason,transaction_type</fields>
917
+ <file_name_format>%s_transactions_corrected_%s.csv</file_name_format>
918
+ </order_basic>
919
+ <product>
920
+ <file_name_format>%s_product_feed.csv</file_name_format>
921
+ </product>
922
+ </feeds>
923
+ </eems_affiliate>
924
+ <eems_affiliate_product_attribute_map>
925
+ <!--
926
+ The purpose of this mapping is enabled the coexistence of both
927
+ pre-configured product attributes mapping and configured attributes
928
+ mapping for the affiliate product feed. This means that when this
929
+ module is installed and no other attribute is configured for the
930
+ product feed the required pre-mapped attributes will be sufficient
931
+ enough to generate a valid product feed.
932
+ -->
933
+ <age_range/>
934
+ <artist/>
935
+ <aspect_ratio/>
936
+ <author/>
937
+ <battery_life/>
938
+ <binding/>
939
+ <buy_url>product_url</buy_url>
940
+ <category_network/>
941
+ <category_program>category</category_program>
942
+ <color/>
943
+ <color_output/>
944
+ <condition/>
945
+ <description_long>description</description_long>
946
+ <description_short>short_description</description_short>
947
+ <director/>
948
+ <discontinued/>
949
+ <display_type/>
950
+ <edition/>
951
+ <expiration_date/>
952
+ <features/>
953
+ <focus_type/>
954
+ <format/>
955
+ <functions/>
956
+ <genre/>
957
+ <heel_height/>
958
+ <height/>
959
+ <image_thumb_url>thumbnail</image_thumb_url>
960
+ <image_url>image</image_url>
961
+ <installation/>
962
+ <in_stock/>
963
+ <isbn/>
964
+ <keywords>meta_keyword</keywords>
965
+ <length/>
966
+ <load_type/>
967
+ <location/>
968
+ <made_in/>
969
+ <manufacturer>manufacturer</manufacturer>
970
+ <material/>
971
+ <megapixels/>
972
+ <memory_capacity/>
973
+ <memory_card_slot/>
974
+ <memory_type/>
975
+ <model_number/>
976
+ <mpn/>
977
+ <name>name</name>
978
+ <occasion/>
979
+ <operating_system/>
980
+ <optical_drive/>
981
+ <pages/>
982
+ <payment_accepted/>
983
+ <payment_notes/>
984
+ <platform/>
985
+ <price>price</price>
986
+ <price_retail>msrp</price_retail>
987
+ <price_sale>special_price</price_sale>
988
+ <price_shipping/>
989
+ <processor/>
990
+ <publisher/>
991
+ <quantity_in_stock>qty</quantity_in_stock>
992
+ <rating/>
993
+ <recommended_usage/>
994
+ <resolution/>
995
+ <screen_size/>
996
+ <shipping_method/>
997
+ <shoe_size/>
998
+ <shoe_width/>
999
+ <size/>
1000
+ <sku>sku</sku>
1001
+ <staring/>
1002
+ <style/>
1003
+ <tech_spec_url/>
1004
+ <tracks/>
1005
+ <upc/>
1006
+ <weight/>
1007
+ <width/>
1008
+ <wireless_interface/>
1009
+ <year/>
1010
+ <zoom/>
1011
+ </eems_affiliate_product_attribute_map>
1012
+ </marketing_solutions>
1013
+ </default>
1014
+ <frontend>
1015
+ <layout>
1016
+ <updates>
1017
+ <eems_affiliate>
1018
+ <file>eems_affiliate.xml</file>
1019
+ </eems_affiliate>
1020
+ </updates>
1021
+ </layout>
1022
+ </frontend>
1023
+ <phpunit>
1024
+ <suite>
1025
+ <modules>
1026
+ <EbayEnterprise_Affiliate/>
1027
+ </modules>
1028
+ </suite>
1029
+ </phpunit>
1030
+ <admin>
1031
+ <routers>
1032
+ <adminhtml>
1033
+ <args>
1034
+ <modules>
1035
+ <eems_affiliate before="Mage_Adminhtml">EbayEnterprise_Affiliate_Adminhtml</eems_affiliate>
1036
+ </modules>
1037
+ </args>
1038
+ </adminhtml>
1039
+ </routers>
1040
+ </admin>
1041
+ </config>
app/code/community/EbayEnterprise/Affiliate/etc/system.xml CHANGED
@@ -1,931 +1,950 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!--
3
- Copyright (c) 2014 eBay Enterprise, Inc.
4
-
5
- NOTICE OF LICENSE
6
-
7
- This source file is subject to the eBay Enterprise
8
- Magento Extensions End User License Agreement
9
- that is bundled with this package in the file LICENSE.md.
10
- It is also available through the world-wide-web at this URL:
11
- http://www.ebayenterprise.com/files/pdf/Magento_Connect_Extensions_EULA_050714.pdf
12
-
13
- @copyright Copyright (c) 2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/)
14
- @license http://www.ebayenterprise.com/files/pdf/Magento_Connect_Extensions_EULA_050714.pdf eBay Enterprise Magento Extensions End User License Agreement
15
- -->
16
- <config>
17
- <tabs>
18
- <ebayenterprise translate="label" module="eems_affiliate">
19
- <label>eBay Enterprise</label>
20
- <sort_order>550</sort_order>
21
- </ebayenterprise>
22
- </tabs>
23
- <sections>
24
- <marketing_solutions translate="label" module="eems_affiliate">
25
- <class>separator-top</class>
26
- <label>Marketing Solutions</label>
27
- <tab>ebayenterprise</tab>
28
- <frontend_type>text</frontend_type>
29
- <sort_order>550</sort_order>
30
- <show_in_default>1</show_in_default>
31
- <show_in_website>1</show_in_website>
32
- <show_in_store>1</show_in_store>
33
- <groups>
34
- <eems_affiliate translate="label comment">
35
- <label>Affiliate</label>
36
- <comment><![CDATA[Your program ID and other information can be found within your EEAN advertiser account. Don’t have an account yet? <a href='https://www.pepperjamnetwork.com/register/basic' target='_pjregister'>Register</a> for one today!]]></comment>
37
- <frontend_type>text</frontend_type>
38
- <sort_order>100</sort_order>
39
- <show_in_default>1</show_in_default>
40
- <show_in_website>1</show_in_website>
41
- <show_in_store>1</show_in_store>
42
- <fields>
43
- <active translate="label">
44
- <label>Enable Affiliate Tracking</label>
45
- <frontend_type>select</frontend_type>
46
- <source_model>adminhtml/system_config_source_yesno</source_model>
47
- <sort_order>1</sort_order>
48
- <show_in_default>1</show_in_default>
49
- <show_in_website>0</show_in_website>
50
- <show_in_store>0</show_in_store>
51
- </active>
52
- <program_id translate="label comment">
53
- <label>Program Id</label>
54
- <comment>Your Program Id will be provided to you by eBay Enterprise Affiliate</comment>
55
- <frontend_type>text</frontend_type>
56
- <sort_order>10</sort_order>
57
- <show_in_default>1</show_in_default>
58
- <show_in_website>1</show_in_website>
59
- <show_in_store>0</show_in_store>
60
- </program_id>
61
- <order_type>
62
- <label>Program Tracking Type</label>
63
- <frontend_type>select</frontend_type>
64
- <source_model>eems_affiliate/system_config_source_ordertypes</source_model>
65
- <sort_order>20</sort_order>
66
- <show_in_default>1</show_in_default>
67
- <show_in_website>0</show_in_website>
68
- <show_in_store>0</show_in_store>
69
- </order_type>
70
- <transaction_type translate="label comment">
71
- <label>Transaction Type</label>
72
- <comment>Sale transactions pay publishers a percentage of the sale, lead transactions pay publishes a flat amount for an action.</comment>
73
- <frontend_type>select</frontend_type>
74
- <source_model>eems_affiliate/system_config_source_transactiontype</source_model>
75
- <depends>
76
- <order_type>basic</order_type>
77
- </depends>
78
- <sort_order>30</sort_order>
79
- <show_in_default>1</show_in_default>
80
- <show_in_website>0</show_in_website>
81
- <show_in_store>0</show_in_store>
82
- </transaction_type>
83
- <export_path translate="label comment">
84
- <label>Export Path</label>
85
- <comment>Default local path to export feeds to. These feeds will need to be made available to eBay Enterprise Affiliate via FTP.</comment>
86
- <frontend_type>text</frontend_type>
87
- <sort_order>50</sort_order>
88
- <show_in_default>1</show_in_default>
89
- <show_in_website>0</show_in_website>
90
- <show_in_store>0</show_in_store>
91
- </export_path>
92
- <conditional_pixel_enabled translate="label">
93
- <label>Conditional Pixel</label>
94
- <frontend_type>select</frontend_type>
95
- <source_model>adminhtml/system_config_source_yesno</source_model>
96
- <sort_order>60</sort_order>
97
- <show_in_default>1</show_in_default>
98
- <show_in_website>0</show_in_website>
99
- <show_in_store>0</show_in_store>
100
- </conditional_pixel_enabled>
101
- <source_key_name translate="label comment">
102
- <label>Query String Key Name</label>
103
- <comment>Only apply the pixel if the query string includes this key.</comment>
104
- <frontend_type>text</frontend_type>
105
- <depends>
106
- <conditional_pixel_enabled>1</conditional_pixel_enabled>
107
- </depends>
108
- <sort_order>70</sort_order>
109
- <show_in_default>1</show_in_default>
110
- <show_in_website>0</show_in_website>
111
- <show_in_store>0</show_in_store>
112
- </source_key_name>
113
- <product_feed_enabled translate="label">
114
- <label>Product Feed Enabled</label>
115
- <frontend_type>select</frontend_type>
116
- <source_model>adminhtml/system_config_source_yesno</source_model>
117
- <sort_order>80</sort_order>
118
- <show_in_default>1</show_in_default>
119
- <show_in_website>0</show_in_website>
120
- <show_in_store>0</show_in_store>
121
- </product_feed_enabled>
122
- <order_feed_enabled translate="label">
123
- <label>Order Correction Feed Enabled</label>
124
- <frontend_type>select</frontend_type>
125
- <source_model>adminhtml/system_config_source_yesno</source_model>
126
- <sort_order>90</sort_order>
127
- <show_in_default>1</show_in_default>
128
- <show_in_website>0</show_in_website>
129
- <show_in_store>0</show_in_store>
130
- </order_feed_enabled>
131
- </fields>
132
- </eems_affiliate>
133
- <eems_affiliate_product_attribute_map translate="label comment">
134
- <label>Affiliate Product Feed Map</label>
135
- <frontend_type>text</frontend_type>
136
- <sort_order>101</sort_order>
137
- <show_in_default>1</show_in_default>
138
- <show_in_website>1</show_in_website>
139
- <show_in_store>0</show_in_store>
140
- <fields>
141
- <age_range translate="label">
142
- <label>age_range</label>
143
- <comment>Suggested age range</comment>
144
- <frontend_type>select</frontend_type>
145
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
146
- <sort_order>1</sort_order>
147
- <show_in_default>1</show_in_default>
148
- <show_in_website>0</show_in_website>
149
- <show_in_store>0</show_in_store>
150
- </age_range>
151
- <artist translate="label">
152
- <label>artist</label>
153
- <comment>Media artist</comment>
154
- <frontend_type>select</frontend_type>
155
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
156
- <sort_order>2</sort_order>
157
- <show_in_default>1</show_in_default>
158
- <show_in_website>0</show_in_website>
159
- <show_in_store>0</show_in_store>
160
- </artist>
161
- <aspect_ratio translate="label">
162
- <label>aspect_ratio</label>
163
- <comment>Screen aspect ratio</comment>
164
- <frontend_type>select</frontend_type>
165
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
166
- <sort_order>3</sort_order>
167
- <show_in_default>1</show_in_default>
168
- <show_in_website>0</show_in_website>
169
- <show_in_store>0</show_in_store>
170
- </aspect_ratio>
171
- <author translate="label">
172
- <label>author</label>
173
- <comment>Media author</comment>
174
- <frontend_type>select</frontend_type>
175
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
176
- <sort_order>4</sort_order>
177
- <show_in_default>1</show_in_default>
178
- <show_in_website>0</show_in_website>
179
- <show_in_store>0</show_in_store>
180
- </author>
181
- <battery_life translate="label">
182
- <label>battery_life</label>
183
- <comment>Battery life</comment>
184
- <frontend_type>select</frontend_type>
185
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
186
- <sort_order>5</sort_order>
187
- <show_in_default>1</show_in_default>
188
- <show_in_website>0</show_in_website>
189
- <show_in_store>0</show_in_store>
190
- </battery_life>
191
- <binding translate="label">
192
- <label>binding</label>
193
- <comment>Book binding</comment>
194
- <frontend_type>select</frontend_type>
195
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
196
- <sort_order>6</sort_order>
197
- <show_in_default>1</show_in_default>
198
- <show_in_website>0</show_in_website>
199
- <show_in_store>0</show_in_store>
200
- </binding>
201
- <buy_url translate="label">
202
- <label>buy_url</label>
203
- <comment>Destination URL (Required)</comment>
204
- <frontend_type>select</frontend_type>
205
- <validate>required-entry</validate>
206
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
207
- <sort_order>7</sort_order>
208
- <show_in_default>1</show_in_default>
209
- <show_in_website>0</show_in_website>
210
- <show_in_store>0</show_in_store>
211
- </buy_url>
212
- <category_network translate="label">
213
- <label>category_network</label>
214
- <comment>eBay Enterprise Affiliate Network specific category (sub categories optionally delimited by '&gt;')</comment>
215
- <frontend_type>select</frontend_type>
216
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
217
- <sort_order>8</sort_order>
218
- <show_in_default>1</show_in_default>
219
- <show_in_website>0</show_in_website>
220
- <show_in_store>0</show_in_store>
221
- </category_network>
222
- <category_program translate="label">
223
- <label>category_program</label>
224
- <comment>Merchant specific category (sub categories optionally delimited by '&gt;') (Recommended)</comment>
225
- <frontend_type>select</frontend_type>
226
- <source_model>eems_affiliate/system_config_source_categories</source_model>
227
- <sort_order>9</sort_order>
228
- <show_in_default>1</show_in_default>
229
- <show_in_website>0</show_in_website>
230
- <show_in_store>0</show_in_store>
231
- </category_program>
232
- <color translate="label">
233
- <label>color</label>
234
- <comment>Color of item</comment>
235
- <frontend_type>select</frontend_type>
236
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
237
- <sort_order>10</sort_order>
238
- <show_in_default>1</show_in_default>
239
- <show_in_website>0</show_in_website>
240
- <show_in_store>0</show_in_store>
241
- </color>
242
- <color_output translate="label">
243
- <label>color_output</label>
244
- <comment>Whether output is color or not</comment>
245
- <frontend_type>select</frontend_type>
246
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
247
- <sort_order>11</sort_order>
248
- <show_in_default>1</show_in_default>
249
- <show_in_website>0</show_in_website>
250
- <show_in_store>0</show_in_store>
251
- </color_output>
252
- <condition translate="label">
253
- <label>condition</label>
254
- <comment>Condition (Recommended)</comment>
255
- <frontend_type>select</frontend_type>
256
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
257
- <sort_order>12</sort_order>
258
- <show_in_default>1</show_in_default>
259
- <show_in_website>0</show_in_website>
260
- <show_in_store>0</show_in_store>
261
- </condition>
262
- <description_long translate="label">
263
- <label>description_long</label>
264
- <comment>Long description (Required)</comment>
265
- <frontend_type>select</frontend_type>
266
- <validate>required-entry</validate>
267
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
268
- <sort_order>13</sort_order>
269
- <show_in_default>1</show_in_default>
270
- <show_in_website>0</show_in_website>
271
- <show_in_store>0</show_in_store>
272
- </description_long>
273
- <description_short translate="label">
274
- <label>description_short</label>
275
- <comment>Short description</comment>
276
- <frontend_type>select</frontend_type>
277
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
278
- <sort_order>14</sort_order>
279
- <show_in_default>1</show_in_default>
280
- <show_in_website>0</show_in_website>
281
- <show_in_store>0</show_in_store>
282
- </description_short>
283
- <director translate="label">
284
- <label>director</label>
285
- <comment>Movie director</comment>
286
- <frontend_type>select</frontend_type>
287
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
288
- <sort_order>15</sort_order>
289
- <show_in_default>1</show_in_default>
290
- <show_in_website>0</show_in_website>
291
- <show_in_store>0</show_in_store>
292
- </director>
293
- <discontinued translate="label">
294
- <label>discontinued</label>
295
- <comment>Whether product is discontinued or not</comment>
296
- <frontend_type>select</frontend_type>
297
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
298
- <sort_order>16</sort_order>
299
- <show_in_default>1</show_in_default>
300
- <show_in_website>0</show_in_website>
301
- <show_in_store>0</show_in_store>
302
- </discontinued>
303
- <display_type translate="label">
304
- <label>display_type</label>
305
- <comment>Display type</comment>
306
- <frontend_type>select</frontend_type>
307
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
308
- <sort_order>17</sort_order>
309
- <show_in_default>1</show_in_default>
310
- <show_in_website>0</show_in_website>
311
- <show_in_store>0</show_in_store>
312
- </display_type>
313
- <edition translate="label">
314
- <label>edition</label>
315
- <comment>Media edition</comment>
316
- <frontend_type>select</frontend_type>
317
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
318
- <sort_order>18</sort_order>
319
- <show_in_default>1</show_in_default>
320
- <show_in_website>0</show_in_website>
321
- <show_in_store>0</show_in_store>
322
- </edition>
323
- <expiration_date translate="label">
324
- <label>expiration_date</label>
325
- <comment>Expiration date</comment>
326
- <frontend_type>select</frontend_type>
327
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
328
- <sort_order>19</sort_order>
329
- <show_in_default>1</show_in_default>
330
- <show_in_website>0</show_in_website>
331
- <show_in_store>0</show_in_store>
332
- </expiration_date>
333
- <features translate="label">
334
- <label>features</label>
335
- <comment>Special features</comment>
336
- <frontend_type>select</frontend_type>
337
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
338
- <sort_order>20</sort_order>
339
- <show_in_default>1</show_in_default>
340
- <show_in_website>0</show_in_website>
341
- <show_in_store>0</show_in_store>
342
- </features>
343
- <focus_type translate="label">
344
- <label>focus_type</label>
345
- <comment>Focus type</comment>
346
- <frontend_type>select</frontend_type>
347
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
348
- <sort_order>21</sort_order>
349
- <show_in_default>1</show_in_default>
350
- <show_in_website>0</show_in_website>
351
- <show_in_store>0</show_in_store>
352
- </focus_type>
353
- <format translate="label">
354
- <label>format</label>
355
- <comment>Format</comment>
356
- <frontend_type>select</frontend_type>
357
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
358
- <sort_order>22</sort_order>
359
- <show_in_default>1</show_in_default>
360
- <show_in_website>0</show_in_website>
361
- <show_in_store>0</show_in_store>
362
- </format>
363
- <functions translate="label">
364
- <label>functions</label>
365
- <comment>Functions</comment>
366
- <frontend_type>select</frontend_type>
367
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
368
- <sort_order>23</sort_order>
369
- <show_in_default>1</show_in_default>
370
- <show_in_website>0</show_in_website>
371
- <show_in_store>0</show_in_store>
372
- </functions>
373
- <genre translate="label">
374
- <label>genre</label>
375
- <comment>Genre</comment>
376
- <frontend_type>select</frontend_type>
377
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
378
- <sort_order>24</sort_order>
379
- <show_in_default>1</show_in_default>
380
- <show_in_website>0</show_in_website>
381
- <show_in_store>0</show_in_store>
382
- </genre>
383
- <heel_height translate="label">
384
- <label>heel_height</label>
385
- <comment>Heel height</comment>
386
- <frontend_type>select</frontend_type>
387
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
388
- <sort_order>25</sort_order>
389
- <show_in_default>1</show_in_default>
390
- <show_in_website>0</show_in_website>
391
- <show_in_store>0</show_in_store>
392
- </heel_height>
393
- <height translate="label">
394
- <label>height</label>
395
- <comment>Height</comment>
396
- <frontend_type>select</frontend_type>
397
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
398
- <sort_order>26</sort_order>
399
- <show_in_default>1</show_in_default>
400
- <show_in_website>0</show_in_website>
401
- <show_in_store>0</show_in_store>
402
- </height>
403
- <image_thumb_url translate="label">
404
- <label>image_thumb_url</label>
405
- <comment>Thumbnail image URL (Recommended)</comment>
406
- <frontend_type>select</frontend_type>
407
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
408
- <sort_order>27</sort_order>
409
- <show_in_default>1</show_in_default>
410
- <show_in_website>0</show_in_website>
411
- <show_in_store>0</show_in_store>
412
- </image_thumb_url>
413
- <image_url translate="label">
414
- <label>image_url</label>
415
- <comment>Standard image URL (Required)</comment>
416
- <frontend_type>select</frontend_type>
417
- <validate>required-entry</validate>
418
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
419
- <sort_order>28</sort_order>
420
- <show_in_default>1</show_in_default>
421
- <show_in_website>0</show_in_website>
422
- <show_in_store>0</show_in_store>
423
- </image_url>
424
- <installation translate="label">
425
- <label>installation</label>
426
- <comment>Installation type</comment>
427
- <frontend_type>select</frontend_type>
428
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
429
- <sort_order>29</sort_order>
430
- <show_in_default>1</show_in_default>
431
- <show_in_website>0</show_in_website>
432
- <show_in_store>0</show_in_store>
433
- </installation>
434
- <in_stock translate="label">
435
- <label>in_stock</label>
436
- <comment>Whether product is in stock or not</comment>
437
- <frontend_type>select</frontend_type>
438
- <source_model>eems_affiliate/system_config_source_stockyesno</source_model>
439
- <sort_order>30</sort_order>
440
- <show_in_default>1</show_in_default>
441
- <show_in_website>0</show_in_website>
442
- <show_in_store>0</show_in_store>
443
- </in_stock>
444
- <isbn translate="label">
445
- <label>isbn</label>
446
- <comment>Book ISBN</comment>
447
- <frontend_type>select</frontend_type>
448
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
449
- <sort_order>31</sort_order>
450
- <show_in_default>1</show_in_default>
451
- <show_in_website>0</show_in_website>
452
- <show_in_store>0</show_in_store>
453
- </isbn>
454
- <keywords translate="label">
455
- <label>keywords</label>
456
- <comment>Space separated list of keywords (Recommended)</comment>
457
- <frontend_type>select</frontend_type>
458
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
459
- <sort_order>32</sort_order>
460
- <show_in_default>1</show_in_default>
461
- <show_in_website>0</show_in_website>
462
- <show_in_store>0</show_in_store>
463
- </keywords>
464
- <length translate="label">
465
- <label>length</label>
466
- <comment>Length</comment>
467
- <frontend_type>select</frontend_type>
468
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
469
- <sort_order>33</sort_order>
470
- <show_in_default>1</show_in_default>
471
- <show_in_website>0</show_in_website>
472
- <show_in_store>0</show_in_store>
473
- </length>
474
- <load_type translate="label">
475
- <label>load_type</label>
476
- <comment>Load type</comment>
477
- <frontend_type>select</frontend_type>
478
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
479
- <sort_order>34</sort_order>
480
- <show_in_default>1</show_in_default>
481
- <show_in_website>0</show_in_website>
482
- <show_in_store>0</show_in_store>
483
- </load_type>
484
- <location translate="label">
485
- <label>location</label>
486
- <comment>Shipping location</comment>
487
- <frontend_type>select</frontend_type>
488
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
489
- <sort_order>35</sort_order>
490
- <show_in_default>1</show_in_default>
491
- <show_in_website>0</show_in_website>
492
- <show_in_store>0</show_in_store>
493
- </location>
494
- <made_in translate="label">
495
- <label>made_in</label>
496
- <comment>Manufacturing country</comment>
497
- <frontend_type>select</frontend_type>
498
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
499
- <sort_order>36</sort_order>
500
- <show_in_default>1</show_in_default>
501
- <show_in_website>0</show_in_website>
502
- <show_in_store>0</show_in_store>
503
- </made_in>
504
- <manufacturer translate="label">
505
- <label>manufacturer</label>
506
- <comment>Manufacturer or brand (Recommended)</comment>
507
- <frontend_type>select</frontend_type>
508
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
509
- <sort_order>37</sort_order>
510
- <show_in_default>1</show_in_default>
511
- <show_in_website>0</show_in_website>
512
- <show_in_store>0</show_in_store>
513
- </manufacturer>
514
- <material translate="label">
515
- <label>material</label>
516
- <comment>Construction material</comment>
517
- <frontend_type>select</frontend_type>
518
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
519
- <sort_order>38</sort_order>
520
- <show_in_default>1</show_in_default>
521
- <show_in_website>0</show_in_website>
522
- <show_in_store>0</show_in_store>
523
- </material>
524
- <megapixels translate="label">
525
- <label>megapixels</label>
526
- <comment>Megapixels</comment>
527
- <frontend_type>select</frontend_type>
528
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
529
- <sort_order>39</sort_order>
530
- <show_in_default>1</show_in_default>
531
- <show_in_website>0</show_in_website>
532
- <show_in_store>0</show_in_store>
533
- </megapixels>
534
- <memory_capacity translate="label">
535
- <label>memory_capacity</label>
536
- <comment>Memory capacity</comment>
537
- <frontend_type>select</frontend_type>
538
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
539
- <sort_order>40</sort_order>
540
- <show_in_default>1</show_in_default>
541
- <show_in_website>0</show_in_website>
542
- <show_in_store>0</show_in_store>
543
- </memory_capacity>
544
- <memory_card_slot translate="label">
545
- <label>memory_card_slot</label>
546
- <comment>Memory card slot type</comment>
547
- <frontend_type>select</frontend_type>
548
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
549
- <sort_order>41</sort_order>
550
- <show_in_default>1</show_in_default>
551
- <show_in_website>0</show_in_website>
552
- <show_in_store>0</show_in_store>
553
- </memory_card_slot>
554
- <memory_type translate="label">
555
- <label>memory_type</label>
556
- <comment>Memory type</comment>
557
- <frontend_type>select</frontend_type>
558
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
559
- <sort_order>42</sort_order>
560
- <show_in_default>1</show_in_default>
561
- <show_in_website>0</show_in_website>
562
- <show_in_store>0</show_in_store>
563
- </memory_type>
564
- <model_number translate="label">
565
- <label>model_number</label>
566
- <comment>Model number</comment>
567
- <frontend_type>select</frontend_type>
568
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
569
- <sort_order>43</sort_order>
570
- <show_in_default>1</show_in_default>
571
- <show_in_website>0</show_in_website>
572
- <show_in_store>0</show_in_store>
573
- </model_number>
574
- <mpn translate="label">
575
- <label>mpn</label>
576
- <comment>Manufacturer part number</comment>
577
- <frontend_type>select</frontend_type>
578
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
579
- <sort_order>44</sort_order>
580
- <show_in_default>1</show_in_default>
581
- <show_in_website>0</show_in_website>
582
- <show_in_store>0</show_in_store>
583
- </mpn>
584
- <name translate="label">
585
- <label>name</label>
586
- <comment>Name or title (Required)</comment>
587
- <frontend_type>select</frontend_type>
588
- <validate>required-entry</validate>
589
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
590
- <sort_order>45</sort_order>
591
- <show_in_default>1</show_in_default>
592
- <show_in_website>0</show_in_website>
593
- <show_in_store>0</show_in_store>
594
- </name>
595
- <occasion translate="label">
596
- <label>occasion</label>
597
- <comment>Recommended usage occasion</comment>
598
- <frontend_type>select</frontend_type>
599
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
600
- <sort_order>46</sort_order>
601
- <show_in_default>1</show_in_default>
602
- <show_in_website>0</show_in_website>
603
- <show_in_store>0</show_in_store>
604
- </occasion>
605
- <operating_system translate="label">
606
- <label>operating_system</label>
607
- <comment>Operating system</comment>
608
- <frontend_type>select</frontend_type>
609
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
610
- <sort_order>47</sort_order>
611
- <show_in_default>1</show_in_default>
612
- <show_in_website>0</show_in_website>
613
- <show_in_store>0</show_in_store>
614
- </operating_system>
615
- <optical_drive translate="label">
616
- <label>optical_drive</label>
617
- <comment>Optical drive type</comment>
618
- <frontend_type>select</frontend_type>
619
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
620
- <sort_order>48</sort_order>
621
- <show_in_default>1</show_in_default>
622
- <show_in_website>0</show_in_website>
623
- <show_in_store>0</show_in_store>
624
- </optical_drive>
625
- <pages translate="label">
626
- <label>pages</label>
627
- <comment>Number of pages</comment>
628
- <frontend_type>select</frontend_type>
629
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
630
- <sort_order>49</sort_order>
631
- <show_in_default>1</show_in_default>
632
- <show_in_website>0</show_in_website>
633
- <show_in_store>0</show_in_store>
634
- </pages>
635
- <payment_accepted translate="label">
636
- <label>payment_accepted</label>
637
- <comment>Accepted payment methods</comment>
638
- <frontend_type>select</frontend_type>
639
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
640
- <sort_order>50</sort_order>
641
- <show_in_default>1</show_in_default>
642
- <show_in_website>0</show_in_website>
643
- <show_in_store>0</show_in_store>
644
- </payment_accepted>
645
- <payment_notes translate="label">
646
- <label>payment_notes</label>
647
- <comment>Additional payment notes</comment>
648
- <frontend_type>select</frontend_type>
649
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
650
- <sort_order>51</sort_order>
651
- <show_in_default>1</show_in_default>
652
- <show_in_website>0</show_in_website>
653
- <show_in_store>0</show_in_store>
654
- </payment_notes>
655
- <platform translate="label">
656
- <label>platform</label>
657
- <comment>Platform</comment>
658
- <frontend_type>select</frontend_type>
659
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
660
- <sort_order>52</sort_order>
661
- <show_in_default>1</show_in_default>
662
- <show_in_website>0</show_in_website>
663
- <show_in_store>0</show_in_store>
664
- </platform>
665
- <price translate="label">
666
- <label>price</label>
667
- <comment>Selling price (Required)</comment>
668
- <frontend_type>select</frontend_type>
669
- <validate>required-entry</validate>
670
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
671
- <sort_order>53</sort_order>
672
- <show_in_default>1</show_in_default>
673
- <show_in_website>0</show_in_website>
674
- <show_in_store>0</show_in_store>
675
- </price>
676
- <price_retail translate="label">
677
- <label>price_retail</label>
678
- <comment>Manufacturer suggested retail price</comment>
679
- <frontend_type>select</frontend_type>
680
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
681
- <sort_order>54</sort_order>
682
- <show_in_default>1</show_in_default>
683
- <show_in_website>0</show_in_website>
684
- <show_in_store>0</show_in_store>
685
- </price_retail>
686
- <price_sale translate="label">
687
- <label>price_sale</label>
688
- <comment>Discount price</comment>
689
- <frontend_type>select</frontend_type>
690
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
691
- <sort_order>55</sort_order>
692
- <show_in_default>1</show_in_default>
693
- <show_in_website>0</show_in_website>
694
- <show_in_store>0</show_in_store>
695
- </price_sale>
696
- <price_shipping translate="label">
697
- <label>price_shipping</label>
698
- <comment>Shipping price</comment>
699
- <frontend_type>select</frontend_type>
700
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
701
- <sort_order>56</sort_order>
702
- <show_in_default>1</show_in_default>
703
- <show_in_website>0</show_in_website>
704
- <show_in_store>0</show_in_store>
705
- </price_shipping>
706
- <processor translate="label">
707
- <label>processor</label>
708
- <comment>Processor type</comment>
709
- <frontend_type>select</frontend_type>
710
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
711
- <sort_order>57</sort_order>
712
- <show_in_default>1</show_in_default>
713
- <show_in_website>0</show_in_website>
714
- <show_in_store>0</show_in_store>
715
- </processor>
716
- <publisher translate="label">
717
- <label>publisher</label>
718
- <comment>Publisher</comment>
719
- <frontend_type>select</frontend_type>
720
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
721
- <sort_order>58</sort_order>
722
- <show_in_default>1</show_in_default>
723
- <show_in_website>0</show_in_website>
724
- <show_in_store>0</show_in_store>
725
- </publisher>
726
- <quantity_in_stock translate="label">
727
- <label>quantity_in_stock</label>
728
- <comment>Number of items in stock</comment>
729
- <frontend_type>select</frontend_type>
730
- <source_model>eems_affiliate/system_config_source_stockquantity</source_model>
731
- <sort_order>59</sort_order>
732
- <show_in_default>1</show_in_default>
733
- <show_in_website>0</show_in_website>
734
- <show_in_store>0</show_in_store>
735
- </quantity_in_stock>
736
- <rating translate="label">
737
- <label>rating</label>
738
- <comment>Rating</comment>
739
- <frontend_type>select</frontend_type>
740
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
741
- <sort_order>60</sort_order>
742
- <show_in_default>1</show_in_default>
743
- <show_in_website>0</show_in_website>
744
- <show_in_store>0</show_in_store>
745
- </rating>
746
- <recommended_usage translate="label">
747
- <label>recommended_usage</label>
748
- <comment>Recommended usage</comment>
749
- <frontend_type>select</frontend_type>
750
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
751
- <sort_order>61</sort_order>
752
- <show_in_default>1</show_in_default>
753
- <show_in_website>0</show_in_website>
754
- <show_in_store>0</show_in_store>
755
- </recommended_usage>
756
- <resolution translate="label">
757
- <label>resolution</label>
758
- <comment>Screen resolution</comment>
759
- <frontend_type>select</frontend_type>
760
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
761
- <sort_order>62</sort_order>
762
- <show_in_default>1</show_in_default>
763
- <show_in_website>0</show_in_website>
764
- <show_in_store>0</show_in_store>
765
- </resolution>
766
- <screen_size translate="label">
767
- <label>screen_size</label>
768
- <comment>Screen size</comment>
769
- <frontend_type>select</frontend_type>
770
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
771
- <sort_order>63</sort_order>
772
- <show_in_default>1</show_in_default>
773
- <show_in_website>0</show_in_website>
774
- <show_in_store>0</show_in_store>
775
- </screen_size>
776
- <shipping_method translate="label">
777
- <label>shipping_method</label>
778
- <comment>Shipping methods</comment>
779
- <frontend_type>select</frontend_type>
780
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
781
- <sort_order>64</sort_order>
782
- <show_in_default>1</show_in_default>
783
- <show_in_website>0</show_in_website>
784
- <show_in_store>0</show_in_store>
785
- </shipping_method>
786
- <shoe_size translate="label">
787
- <label>shoe_size</label>
788
- <comment>Shoe size</comment>
789
- <frontend_type>select</frontend_type>
790
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
791
- <sort_order>65</sort_order>
792
- <show_in_default>1</show_in_default>
793
- <show_in_website>0</show_in_website>
794
- <show_in_store>0</show_in_store>
795
- </shoe_size>
796
- <shoe_width translate="label">
797
- <label>shoe_width</label>
798
- <comment>Shoe width</comment>
799
- <frontend_type>select</frontend_type>
800
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
801
- <sort_order>66</sort_order>
802
- <show_in_default>1</show_in_default>
803
- <show_in_website>0</show_in_website>
804
- <show_in_store>0</show_in_store>
805
- </shoe_width>
806
- <size translate="label">
807
- <label>size</label>
808
- <comment>Size</comment>
809
- <frontend_type>select</frontend_type>
810
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
811
- <sort_order>67</sort_order>
812
- <show_in_default>1</show_in_default>
813
- <show_in_website>0</show_in_website>
814
- <show_in_store>0</show_in_store>
815
- </size>
816
- <sku translate="label">
817
- <label>sku</label>
818
- <comment>Stock keeping unit (Recommended)</comment>
819
- <frontend_type>select</frontend_type>
820
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
821
- <sort_order>68</sort_order>
822
- <show_in_default>1</show_in_default>
823
- <show_in_website>0</show_in_website>
824
- <show_in_store>0</show_in_store>
825
- </sku>
826
- <staring translate="label">
827
- <label>staring</label>
828
- <comment>Staring actors</comment>
829
- <frontend_type>select</frontend_type>
830
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
831
- <sort_order>69</sort_order>
832
- <show_in_default>1</show_in_default>
833
- <show_in_website>0</show_in_website>
834
- <show_in_store>0</show_in_store>
835
- </staring>
836
- <style translate="label">
837
- <label>style</label>
838
- <comment>Style</comment>
839
- <frontend_type>select</frontend_type>
840
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
841
- <sort_order>70</sort_order>
842
- <show_in_default>1</show_in_default>
843
- <show_in_website>0</show_in_website>
844
- <show_in_store>0</show_in_store>
845
- </style>
846
- <tech_spec_url translate="label">
847
- <label>tech_spec_url</label>
848
- <comment>Technical specifications URL</comment>
849
- <frontend_type>select</frontend_type>
850
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
851
- <sort_order>71</sort_order>
852
- <show_in_default>1</show_in_default>
853
- <show_in_website>0</show_in_website>
854
- <show_in_store>0</show_in_store>
855
- </tech_spec_url>
856
- <tracks translate="label">
857
- <label>tracks</label>
858
- <comment>Total number of tracks</comment>
859
- <frontend_type>select</frontend_type>
860
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
861
- <sort_order>72</sort_order>
862
- <show_in_default>1</show_in_default>
863
- <show_in_website>0</show_in_website>
864
- <show_in_store>0</show_in_store>
865
- </tracks>
866
- <upc translate="label">
867
- <label>upc</label>
868
- <comment>Universal product code (Recommended)</comment>
869
- <frontend_type>select</frontend_type>
870
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
871
- <sort_order>73</sort_order>
872
- <show_in_default>1</show_in_default>
873
- <show_in_website>0</show_in_website>
874
- <show_in_store>0</show_in_store>
875
- </upc>
876
- <weight translate="label">
877
- <label>weight</label>
878
- <comment>Weight</comment>
879
- <frontend_type>select</frontend_type>
880
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
881
- <sort_order>74</sort_order>
882
- <show_in_default>1</show_in_default>
883
- <show_in_website>0</show_in_website>
884
- <show_in_store>0</show_in_store>
885
- </weight>
886
- <width translate="label">
887
- <label>width</label>
888
- <comment>Width</comment>
889
- <frontend_type>select</frontend_type>
890
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
891
- <sort_order>75</sort_order>
892
- <show_in_default>1</show_in_default>
893
- <show_in_website>0</show_in_website>
894
- <show_in_store>0</show_in_store>
895
- </width>
896
- <wireless_interface translate="label">
897
- <label>wireless_interface</label>
898
- <comment>Wireless interface</comment>
899
- <frontend_type>select</frontend_type>
900
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
901
- <sort_order>76</sort_order>
902
- <show_in_default>1</show_in_default>
903
- <show_in_website>0</show_in_website>
904
- <show_in_store>0</show_in_store>
905
- </wireless_interface>
906
- <year translate="label">
907
- <label>year</label>
908
- <comment>Year of manufacture - YYYY</comment>
909
- <frontend_type>select</frontend_type>
910
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
911
- <sort_order>77</sort_order>
912
- <show_in_default>1</show_in_default>
913
- <show_in_website>0</show_in_website>
914
- <show_in_store>0</show_in_store>
915
- </year>
916
- <zoom translate="label">
917
- <label>zoom</label>
918
- <comment>Maximum zoom</comment>
919
- <frontend_type>select</frontend_type>
920
- <source_model>eems_affiliate/system_config_source_attributes</source_model>
921
- <sort_order>78</sort_order>
922
- <show_in_default>1</show_in_default>
923
- <show_in_website>0</show_in_website>
924
- <show_in_store>0</show_in_store>
925
- </zoom>
926
- </fields>
927
- </eems_affiliate_product_attribute_map>
928
- </groups>
929
- </marketing_solutions>
930
- </sections>
931
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!--
3
+ Copyright (c) 2014 eBay Enterprise, Inc.
4
+
5
+ NOTICE OF LICENSE
6
+
7
+ This source file is subject to the eBay Enterprise
8
+ Magento Extensions End User License Agreement
9
+ that is bundled with this package in the file LICENSE.md.
10
+ It is also available through the world-wide-web at this URL:
11
+ http://www.ebayenterprise.com/files/pdf/Magento_Connect_Extensions_EULA_050714.pdf
12
+
13
+ @copyright Copyright (c) 2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/)
14
+ @license http://www.ebayenterprise.com/files/pdf/Magento_Connect_Extensions_EULA_050714.pdf eBay Enterprise Magento Extensions End User License Agreement
15
+ -->
16
+ <config>
17
+ <tabs>
18
+ <ebayenterprise translate="label" module="eems_affiliate">
19
+ <label>eBay Enterprise</label>
20
+ <sort_order>550</sort_order>
21
+ </ebayenterprise>
22
+ </tabs>
23
+ <sections>
24
+ <marketing_solutions translate="label" module="eems_affiliate">
25
+ <class>separator-top</class>
26
+ <label>Marketing Solutions</label>
27
+ <tab>ebayenterprise</tab>
28
+ <frontend_type>text</frontend_type>
29
+ <sort_order>550</sort_order>
30
+ <show_in_default>1</show_in_default>
31
+ <show_in_website>1</show_in_website>
32
+ <show_in_store>1</show_in_store>
33
+ <groups>
34
+ <eems_affiliate translate="label comment">
35
+ <label>Affiliate</label>
36
+ <comment><![CDATA[Your program ID and other information can be found within your EEAN advertiser account. Don’t have an account yet? <a href='https://www.pepperjamnetwork.com/register/basic' target='_pjregister'>Register</a> for one today!]]></comment>
37
+ <frontend_type>text</frontend_type>
38
+ <sort_order>100</sort_order>
39
+ <show_in_default>1</show_in_default>
40
+ <show_in_website>1</show_in_website>
41
+ <show_in_store>1</show_in_store>
42
+ <fields>
43
+ <active translate="label">
44
+ <label>Enable Affiliate Tracking</label>
45
+ <frontend_type>select</frontend_type>
46
+ <source_model>adminhtml/system_config_source_yesno</source_model>
47
+ <sort_order>1</sort_order>
48
+ <show_in_default>1</show_in_default>
49
+ <show_in_website>0</show_in_website>
50
+ <show_in_store>0</show_in_store>
51
+ </active>
52
+ <program_id translate="label comment">
53
+ <label>Program Id</label>
54
+ <comment>Your Program Id will be provided to you by eBay Enterprise Affiliate</comment>
55
+ <frontend_type>text</frontend_type>
56
+ <sort_order>10</sort_order>
57
+ <show_in_default>1</show_in_default>
58
+ <show_in_website>1</show_in_website>
59
+ <show_in_store>0</show_in_store>
60
+ </program_id>
61
+ <order_type>
62
+ <label>Program Tracking Type</label>
63
+ <frontend_type>select</frontend_type>
64
+ <source_model>eems_affiliate/system_config_source_ordertypes</source_model>
65
+ <sort_order>20</sort_order>
66
+ <show_in_default>1</show_in_default>
67
+ <show_in_website>0</show_in_website>
68
+ <show_in_store>0</show_in_store>
69
+ </order_type>
70
+ <transaction_type translate="label comment">
71
+ <label>Transaction Type</label>
72
+ <comment>Sale transactions pay publishers a percentage of the sale, lead transactions pay publishes a flat amount for an action.</comment>
73
+ <frontend_type>select</frontend_type>
74
+ <source_model>eems_affiliate/system_config_source_transactiontype</source_model>
75
+ <depends>
76
+ <order_type>basic</order_type>
77
+ </depends>
78
+ <sort_order>30</sort_order>
79
+ <show_in_default>1</show_in_default>
80
+ <show_in_website>0</show_in_website>
81
+ <show_in_store>0</show_in_store>
82
+ </transaction_type>
83
+ <export_path translate="label comment">
84
+ <label>Export Path</label>
85
+ <comment>Default local path to export feeds to. These feeds will need to be made available to eBay Enterprise Affiliate via FTP.</comment>
86
+ <frontend_type>text</frontend_type>
87
+ <sort_order>50</sort_order>
88
+ <show_in_default>1</show_in_default>
89
+ <show_in_website>0</show_in_website>
90
+ <show_in_store>0</show_in_store>
91
+ </export_path>
92
+ <conditional_pixel_enabled translate="label">
93
+ <label>Conditional Pixel</label>
94
+ <frontend_type>select</frontend_type>
95
+ <source_model>adminhtml/system_config_source_yesno</source_model>
96
+ <sort_order>60</sort_order>
97
+ <show_in_default>1</show_in_default>
98
+ <show_in_website>0</show_in_website>
99
+ <show_in_store>0</show_in_store>
100
+ </conditional_pixel_enabled>
101
+ <source_key_name translate="label comment">
102
+ <label>Query String Key Name</label>
103
+ <comment>Only apply the pixel if the query string includes this key.</comment>
104
+ <frontend_type>text</frontend_type>
105
+ <depends>
106
+ <conditional_pixel_enabled>1</conditional_pixel_enabled>
107
+ </depends>
108
+ <sort_order>70</sort_order>
109
+ <show_in_default>1</show_in_default>
110
+ <show_in_website>0</show_in_website>
111
+ <show_in_store>0</show_in_store>
112
+ </source_key_name>
113
+ <product_feed_enabled translate="label">
114
+ <label>Product Feed Enabled</label>
115
+ <frontend_type>select</frontend_type>
116
+ <source_model>adminhtml/system_config_source_yesno</source_model>
117
+ <sort_order>80</sort_order>
118
+ <show_in_default>1</show_in_default>
119
+ <show_in_website>0</show_in_website>
120
+ <show_in_store>0</show_in_store>
121
+ </product_feed_enabled>
122
+ <order_feed_enabled translate="label">
123
+ <label>Order Correction Feed Enabled</label>
124
+ <frontend_type>select</frontend_type>
125
+ <source_model>adminhtml/system_config_source_yesno</source_model>
126
+ <sort_order>90</sort_order>
127
+ <show_in_default>1</show_in_default>
128
+ <show_in_website>0</show_in_website>
129
+ <show_in_store>0</show_in_store>
130
+ </order_feed_enabled>
131
+ </fields>
132
+ </eems_affiliate>
133
+ <eems_affiliate_product_attribute_map translate="label comment">
134
+ <label>Affiliate Product Feed Map</label>
135
+ <frontend_type>text</frontend_type>
136
+ <sort_order>200</sort_order>
137
+ <show_in_default>1</show_in_default>
138
+ <show_in_website>1</show_in_website>
139
+ <show_in_store>0</show_in_store>
140
+ <fields>
141
+ <age_range translate="label">
142
+ <label>age_range</label>
143
+ <comment>Suggested age range</comment>
144
+ <frontend_type>select</frontend_type>
145
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
146
+ <sort_order>1</sort_order>
147
+ <show_in_default>1</show_in_default>
148
+ <show_in_website>0</show_in_website>
149
+ <show_in_store>0</show_in_store>
150
+ </age_range>
151
+ <artist translate="label">
152
+ <label>artist</label>
153
+ <comment>Media artist</comment>
154
+ <frontend_type>select</frontend_type>
155
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
156
+ <sort_order>2</sort_order>
157
+ <show_in_default>1</show_in_default>
158
+ <show_in_website>0</show_in_website>
159
+ <show_in_store>0</show_in_store>
160
+ </artist>
161
+ <aspect_ratio translate="label">
162
+ <label>aspect_ratio</label>
163
+ <comment>Screen aspect ratio</comment>
164
+ <frontend_type>select</frontend_type>
165
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
166
+ <sort_order>3</sort_order>
167
+ <show_in_default>1</show_in_default>
168
+ <show_in_website>0</show_in_website>
169
+ <show_in_store>0</show_in_store>
170
+ </aspect_ratio>
171
+ <author translate="label">
172
+ <label>author</label>
173
+ <comment>Media author</comment>
174
+ <frontend_type>select</frontend_type>
175
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
176
+ <sort_order>4</sort_order>
177
+ <show_in_default>1</show_in_default>
178
+ <show_in_website>0</show_in_website>
179
+ <show_in_store>0</show_in_store>
180
+ </author>
181
+ <battery_life translate="label">
182
+ <label>battery_life</label>
183
+ <comment>Battery life</comment>
184
+ <frontend_type>select</frontend_type>
185
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
186
+ <sort_order>5</sort_order>
187
+ <show_in_default>1</show_in_default>
188
+ <show_in_website>0</show_in_website>
189
+ <show_in_store>0</show_in_store>
190
+ </battery_life>
191
+ <binding translate="label">
192
+ <label>binding</label>
193
+ <comment>Book binding</comment>
194
+ <frontend_type>select</frontend_type>
195
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
196
+ <sort_order>6</sort_order>
197
+ <show_in_default>1</show_in_default>
198
+ <show_in_website>0</show_in_website>
199
+ <show_in_store>0</show_in_store>
200
+ </binding>
201
+ <buy_url translate="label">
202
+ <label>buy_url</label>
203
+ <comment>Destination URL (Required)</comment>
204
+ <frontend_type>select</frontend_type>
205
+ <validate>required-entry</validate>
206
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
207
+ <sort_order>7</sort_order>
208
+ <show_in_default>1</show_in_default>
209
+ <show_in_website>0</show_in_website>
210
+ <show_in_store>0</show_in_store>
211
+ </buy_url>
212
+ <category_network translate="label">
213
+ <label>category_network</label>
214
+ <comment>eBay Enterprise Affiliate Network specific category (sub categories optionally delimited by '&gt;')</comment>
215
+ <frontend_type>select</frontend_type>
216
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
217
+ <sort_order>8</sort_order>
218
+ <show_in_default>1</show_in_default>
219
+ <show_in_website>0</show_in_website>
220
+ <show_in_store>0</show_in_store>
221
+ </category_network>
222
+ <category_program translate="label">
223
+ <label>category_program</label>
224
+ <comment>Merchant specific category (sub categories optionally delimited by '&gt;') (Recommended)</comment>
225
+ <frontend_type>select</frontend_type>
226
+ <source_model>eems_affiliate/system_config_source_categories</source_model>
227
+ <sort_order>9</sort_order>
228
+ <show_in_default>1</show_in_default>
229
+ <show_in_website>0</show_in_website>
230
+ <show_in_store>0</show_in_store>
231
+ </category_program>
232
+ <color translate="label">
233
+ <label>color</label>
234
+ <comment>Color of item</comment>
235
+ <frontend_type>select</frontend_type>
236
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
237
+ <sort_order>10</sort_order>
238
+ <show_in_default>1</show_in_default>
239
+ <show_in_website>0</show_in_website>
240
+ <show_in_store>0</show_in_store>
241
+ </color>
242
+ <color_output translate="label">
243
+ <label>color_output</label>
244
+ <comment>Whether output is color or not</comment>
245
+ <frontend_type>select</frontend_type>
246
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
247
+ <sort_order>11</sort_order>
248
+ <show_in_default>1</show_in_default>
249
+ <show_in_website>0</show_in_website>
250
+ <show_in_store>0</show_in_store>
251
+ </color_output>
252
+ <condition translate="label">
253
+ <label>condition</label>
254
+ <comment>Condition (Recommended)</comment>
255
+ <frontend_type>select</frontend_type>
256
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
257
+ <sort_order>12</sort_order>
258
+ <show_in_default>1</show_in_default>
259
+ <show_in_website>0</show_in_website>
260
+ <show_in_store>0</show_in_store>
261
+ </condition>
262
+ <description_long translate="label">
263
+ <label>description_long</label>
264
+ <comment>Long description (Required)</comment>
265
+ <frontend_type>select</frontend_type>
266
+ <validate>required-entry</validate>
267
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
268
+ <sort_order>13</sort_order>
269
+ <show_in_default>1</show_in_default>
270
+ <show_in_website>0</show_in_website>
271
+ <show_in_store>0</show_in_store>
272
+ </description_long>
273
+ <description_short translate="label">
274
+ <label>description_short</label>
275
+ <comment>Short description</comment>
276
+ <frontend_type>select</frontend_type>
277
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
278
+ <sort_order>14</sort_order>
279
+ <show_in_default>1</show_in_default>
280
+ <show_in_website>0</show_in_website>
281
+ <show_in_store>0</show_in_store>
282
+ </description_short>
283
+ <director translate="label">
284
+ <label>director</label>
285
+ <comment>Movie director</comment>
286
+ <frontend_type>select</frontend_type>
287
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
288
+ <sort_order>15</sort_order>
289
+ <show_in_default>1</show_in_default>
290
+ <show_in_website>0</show_in_website>
291
+ <show_in_store>0</show_in_store>
292
+ </director>
293
+ <discontinued translate="label">
294
+ <label>discontinued</label>
295
+ <comment>Whether product is discontinued or not</comment>
296
+ <frontend_type>select</frontend_type>
297
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
298
+ <sort_order>16</sort_order>
299
+ <show_in_default>1</show_in_default>
300
+ <show_in_website>0</show_in_website>
301
+ <show_in_store>0</show_in_store>
302
+ </discontinued>
303
+ <display_type translate="label">
304
+ <label>display_type</label>
305
+ <comment>Display type</comment>
306
+ <frontend_type>select</frontend_type>
307
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
308
+ <sort_order>17</sort_order>
309
+ <show_in_default>1</show_in_default>
310
+ <show_in_website>0</show_in_website>
311
+ <show_in_store>0</show_in_store>
312
+ </display_type>
313
+ <edition translate="label">
314
+ <label>edition</label>
315
+ <comment>Media edition</comment>
316
+ <frontend_type>select</frontend_type>
317
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
318
+ <sort_order>18</sort_order>
319
+ <show_in_default>1</show_in_default>
320
+ <show_in_website>0</show_in_website>
321
+ <show_in_store>0</show_in_store>
322
+ </edition>
323
+ <expiration_date translate="label">
324
+ <label>expiration_date</label>
325
+ <comment>Expiration date</comment>
326
+ <frontend_type>select</frontend_type>
327
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
328
+ <sort_order>19</sort_order>
329
+ <show_in_default>1</show_in_default>
330
+ <show_in_website>0</show_in_website>
331
+ <show_in_store>0</show_in_store>
332
+ </expiration_date>
333
+ <features translate="label">
334
+ <label>features</label>
335
+ <comment>Special features</comment>
336
+ <frontend_type>select</frontend_type>
337
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
338
+ <sort_order>20</sort_order>
339
+ <show_in_default>1</show_in_default>
340
+ <show_in_website>0</show_in_website>
341
+ <show_in_store>0</show_in_store>
342
+ </features>
343
+ <focus_type translate="label">
344
+ <label>focus_type</label>
345
+ <comment>Focus type</comment>
346
+ <frontend_type>select</frontend_type>
347
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
348
+ <sort_order>21</sort_order>
349
+ <show_in_default>1</show_in_default>
350
+ <show_in_website>0</show_in_website>
351
+ <show_in_store>0</show_in_store>
352
+ </focus_type>
353
+ <format translate="label">
354
+ <label>format</label>
355
+ <comment>Format</comment>
356
+ <frontend_type>select</frontend_type>
357
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
358
+ <sort_order>22</sort_order>
359
+ <show_in_default>1</show_in_default>
360
+ <show_in_website>0</show_in_website>
361
+ <show_in_store>0</show_in_store>
362
+ </format>
363
+ <functions translate="label">
364
+ <label>functions</label>
365
+ <comment>Functions</comment>
366
+ <frontend_type>select</frontend_type>
367
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
368
+ <sort_order>23</sort_order>
369
+ <show_in_default>1</show_in_default>
370
+ <show_in_website>0</show_in_website>
371
+ <show_in_store>0</show_in_store>
372
+ </functions>
373
+ <genre translate="label">
374
+ <label>genre</label>
375
+ <comment>Genre</comment>
376
+ <frontend_type>select</frontend_type>
377
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
378
+ <sort_order>24</sort_order>
379
+ <show_in_default>1</show_in_default>
380
+ <show_in_website>0</show_in_website>
381
+ <show_in_store>0</show_in_store>
382
+ </genre>
383
+ <heel_height translate="label">
384
+ <label>heel_height</label>
385
+ <comment>Heel height</comment>
386
+ <frontend_type>select</frontend_type>
387
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
388
+ <sort_order>25</sort_order>
389
+ <show_in_default>1</show_in_default>
390
+ <show_in_website>0</show_in_website>
391
+ <show_in_store>0</show_in_store>
392
+ </heel_height>
393
+ <height translate="label">
394
+ <label>height</label>
395
+ <comment>Height</comment>
396
+ <frontend_type>select</frontend_type>
397
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
398
+ <sort_order>26</sort_order>
399
+ <show_in_default>1</show_in_default>
400
+ <show_in_website>0</show_in_website>
401
+ <show_in_store>0</show_in_store>
402
+ </height>
403
+ <image_thumb_url translate="label">
404
+ <label>image_thumb_url</label>
405
+ <comment>Thumbnail image URL (Recommended)</comment>
406
+ <frontend_type>select</frontend_type>
407
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
408
+ <sort_order>27</sort_order>
409
+ <show_in_default>1</show_in_default>
410
+ <show_in_website>0</show_in_website>
411
+ <show_in_store>0</show_in_store>
412
+ </image_thumb_url>
413
+ <image_url translate="label">
414
+ <label>image_url</label>
415
+ <comment>Standard image URL (Required)</comment>
416
+ <frontend_type>select</frontend_type>
417
+ <validate>required-entry</validate>
418
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
419
+ <sort_order>28</sort_order>
420
+ <show_in_default>1</show_in_default>
421
+ <show_in_website>0</show_in_website>
422
+ <show_in_store>0</show_in_store>
423
+ </image_url>
424
+ <installation translate="label">
425
+ <label>installation</label>
426
+ <comment>Installation type</comment>
427
+ <frontend_type>select</frontend_type>
428
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
429
+ <sort_order>29</sort_order>
430
+ <show_in_default>1</show_in_default>
431
+ <show_in_website>0</show_in_website>
432
+ <show_in_store>0</show_in_store>
433
+ </installation>
434
+ <in_stock translate="label">
435
+ <label>in_stock</label>
436
+ <comment>Whether product is in stock or not</comment>
437
+ <frontend_type>select</frontend_type>
438
+ <source_model>eems_affiliate/system_config_source_stockyesno</source_model>
439
+ <sort_order>30</sort_order>
440
+ <show_in_default>1</show_in_default>
441
+ <show_in_website>0</show_in_website>
442
+ <show_in_store>0</show_in_store>
443
+ </in_stock>
444
+ <isbn translate="label">
445
+ <label>isbn</label>
446
+ <comment>Book ISBN</comment>
447
+ <frontend_type>select</frontend_type>
448
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
449
+ <sort_order>31</sort_order>
450
+ <show_in_default>1</show_in_default>
451
+ <show_in_website>0</show_in_website>
452
+ <show_in_store>0</show_in_store>
453
+ </isbn>
454
+ <keywords translate="label">
455
+ <label>keywords</label>
456
+ <comment>Space separated list of keywords (Recommended)</comment>
457
+ <frontend_type>select</frontend_type>
458
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
459
+ <sort_order>32</sort_order>
460
+ <show_in_default>1</show_in_default>
461
+ <show_in_website>0</show_in_website>
462
+ <show_in_store>0</show_in_store>
463
+ </keywords>
464
+ <length translate="label">
465
+ <label>length</label>
466
+ <comment>Length</comment>
467
+ <frontend_type>select</frontend_type>
468
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
469
+ <sort_order>33</sort_order>
470
+ <show_in_default>1</show_in_default>
471
+ <show_in_website>0</show_in_website>
472
+ <show_in_store>0</show_in_store>
473
+ </length>
474
+ <load_type translate="label">
475
+ <label>load_type</label>
476
+ <comment>Load type</comment>
477
+ <frontend_type>select</frontend_type>
478
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
479
+ <sort_order>34</sort_order>
480
+ <show_in_default>1</show_in_default>
481
+ <show_in_website>0</show_in_website>
482
+ <show_in_store>0</show_in_store>
483
+ </load_type>
484
+ <location translate="label">
485
+ <label>location</label>
486
+ <comment>Shipping location</comment>
487
+ <frontend_type>select</frontend_type>
488
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
489
+ <sort_order>35</sort_order>
490
+ <show_in_default>1</show_in_default>
491
+ <show_in_website>0</show_in_website>
492
+ <show_in_store>0</show_in_store>
493
+ </location>
494
+ <made_in translate="label">
495
+ <label>made_in</label>
496
+ <comment>Manufacturing country</comment>
497
+ <frontend_type>select</frontend_type>
498
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
499
+ <sort_order>36</sort_order>
500
+ <show_in_default>1</show_in_default>
501
+ <show_in_website>0</show_in_website>
502
+ <show_in_store>0</show_in_store>
503
+ </made_in>
504
+ <manufacturer translate="label">
505
+ <label>manufacturer</label>
506
+ <comment>Manufacturer or brand (Recommended)</comment>
507
+ <frontend_type>select</frontend_type>
508
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
509
+ <sort_order>37</sort_order>
510
+ <show_in_default>1</show_in_default>
511
+ <show_in_website>0</show_in_website>
512
+ <show_in_store>0</show_in_store>
513
+ </manufacturer>
514
+ <material translate="label">
515
+ <label>material</label>
516
+ <comment>Construction material</comment>
517
+ <frontend_type>select</frontend_type>
518
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
519
+ <sort_order>38</sort_order>
520
+ <show_in_default>1</show_in_default>
521
+ <show_in_website>0</show_in_website>
522
+ <show_in_store>0</show_in_store>
523
+ </material>
524
+ <megapixels translate="label">
525
+ <label>megapixels</label>
526
+ <comment>Megapixels</comment>
527
+ <frontend_type>select</frontend_type>
528
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
529
+ <sort_order>39</sort_order>
530
+ <show_in_default>1</show_in_default>
531
+ <show_in_website>0</show_in_website>
532
+ <show_in_store>0</show_in_store>
533
+ </megapixels>
534
+ <memory_capacity translate="label">
535
+ <label>memory_capacity</label>
536
+ <comment>Memory capacity</comment>
537
+ <frontend_type>select</frontend_type>
538
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
539
+ <sort_order>40</sort_order>
540
+ <show_in_default>1</show_in_default>
541
+ <show_in_website>0</show_in_website>
542
+ <show_in_store>0</show_in_store>
543
+ </memory_capacity>
544
+ <memory_card_slot translate="label">
545
+ <label>memory_card_slot</label>
546
+ <comment>Memory card slot type</comment>
547
+ <frontend_type>select</frontend_type>
548
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
549
+ <sort_order>41</sort_order>
550
+ <show_in_default>1</show_in_default>
551
+ <show_in_website>0</show_in_website>
552
+ <show_in_store>0</show_in_store>
553
+ </memory_card_slot>
554
+ <memory_type translate="label">
555
+ <label>memory_type</label>
556
+ <comment>Memory type</comment>
557
+ <frontend_type>select</frontend_type>
558
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
559
+ <sort_order>42</sort_order>
560
+ <show_in_default>1</show_in_default>
561
+ <show_in_website>0</show_in_website>
562
+ <show_in_store>0</show_in_store>
563
+ </memory_type>
564
+ <model_number translate="label">
565
+ <label>model_number</label>
566
+ <comment>Model number</comment>
567
+ <frontend_type>select</frontend_type>
568
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
569
+ <sort_order>43</sort_order>
570
+ <show_in_default>1</show_in_default>
571
+ <show_in_website>0</show_in_website>
572
+ <show_in_store>0</show_in_store>
573
+ </model_number>
574
+ <mpn translate="label">
575
+ <label>mpn</label>
576
+ <comment>Manufacturer part number</comment>
577
+ <frontend_type>select</frontend_type>
578
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
579
+ <sort_order>44</sort_order>
580
+ <show_in_default>1</show_in_default>
581
+ <show_in_website>0</show_in_website>
582
+ <show_in_store>0</show_in_store>
583
+ </mpn>
584
+ <name translate="label">
585
+ <label>name</label>
586
+ <comment>Name or title (Required)</comment>
587
+ <frontend_type>select</frontend_type>
588
+ <validate>required-entry</validate>
589
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
590
+ <sort_order>45</sort_order>
591
+ <show_in_default>1</show_in_default>
592
+ <show_in_website>0</show_in_website>
593
+ <show_in_store>0</show_in_store>
594
+ </name>
595
+ <occasion translate="label">
596
+ <label>occasion</label>
597
+ <comment>Recommended usage occasion</comment>
598
+ <frontend_type>select</frontend_type>
599
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
600
+ <sort_order>46</sort_order>
601
+ <show_in_default>1</show_in_default>
602
+ <show_in_website>0</show_in_website>
603
+ <show_in_store>0</show_in_store>
604
+ </occasion>
605
+ <operating_system translate="label">
606
+ <label>operating_system</label>
607
+ <comment>Operating system</comment>
608
+ <frontend_type>select</frontend_type>
609
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
610
+ <sort_order>47</sort_order>
611
+ <show_in_default>1</show_in_default>
612
+ <show_in_website>0</show_in_website>
613
+ <show_in_store>0</show_in_store>
614
+ </operating_system>
615
+ <optical_drive translate="label">
616
+ <label>optical_drive</label>
617
+ <comment>Optical drive type</comment>
618
+ <frontend_type>select</frontend_type>
619
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
620
+ <sort_order>48</sort_order>
621
+ <show_in_default>1</show_in_default>
622
+ <show_in_website>0</show_in_website>
623
+ <show_in_store>0</show_in_store>
624
+ </optical_drive>
625
+ <pages translate="label">
626
+ <label>pages</label>
627
+ <comment>Number of pages</comment>
628
+ <frontend_type>select</frontend_type>
629
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
630
+ <sort_order>49</sort_order>
631
+ <show_in_default>1</show_in_default>
632
+ <show_in_website>0</show_in_website>
633
+ <show_in_store>0</show_in_store>
634
+ </pages>
635
+ <payment_accepted translate="label">
636
+ <label>payment_accepted</label>
637
+ <comment>Accepted payment methods</comment>
638
+ <frontend_type>select</frontend_type>
639
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
640
+ <sort_order>50</sort_order>
641
+ <show_in_default>1</show_in_default>
642
+ <show_in_website>0</show_in_website>
643
+ <show_in_store>0</show_in_store>
644
+ </payment_accepted>
645
+ <payment_notes translate="label">
646
+ <label>payment_notes</label>
647
+ <comment>Additional payment notes</comment>
648
+ <frontend_type>select</frontend_type>
649
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
650
+ <sort_order>51</sort_order>
651
+ <show_in_default>1</show_in_default>
652
+ <show_in_website>0</show_in_website>
653
+ <show_in_store>0</show_in_store>
654
+ </payment_notes>
655
+ <platform translate="label">
656
+ <label>platform</label>
657
+ <comment>Platform</comment>
658
+ <frontend_type>select</frontend_type>
659
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
660
+ <sort_order>52</sort_order>
661
+ <show_in_default>1</show_in_default>
662
+ <show_in_website>0</show_in_website>
663
+ <show_in_store>0</show_in_store>
664
+ </platform>
665
+ <price translate="label">
666
+ <label>price</label>
667
+ <comment>Selling price (Required)</comment>
668
+ <frontend_type>select</frontend_type>
669
+ <validate>required-entry</validate>
670
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
671
+ <sort_order>53</sort_order>
672
+ <show_in_default>1</show_in_default>
673
+ <show_in_website>0</show_in_website>
674
+ <show_in_store>0</show_in_store>
675
+ </price>
676
+ <price_retail translate="label">
677
+ <label>price_retail</label>
678
+ <comment>Manufacturer suggested retail price</comment>
679
+ <frontend_type>select</frontend_type>
680
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
681
+ <sort_order>54</sort_order>
682
+ <show_in_default>1</show_in_default>
683
+ <show_in_website>0</show_in_website>
684
+ <show_in_store>0</show_in_store>
685
+ </price_retail>
686
+ <price_sale translate="label">
687
+ <label>price_sale</label>
688
+ <comment>Discount price</comment>
689
+ <frontend_type>select</frontend_type>
690
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
691
+ <sort_order>55</sort_order>
692
+ <show_in_default>1</show_in_default>
693
+ <show_in_website>0</show_in_website>
694
+ <show_in_store>0</show_in_store>
695
+ </price_sale>
696
+ <price_shipping translate="label">
697
+ <label>price_shipping</label>
698
+ <comment>Shipping price</comment>
699
+ <frontend_type>select</frontend_type>
700
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
701
+ <sort_order>56</sort_order>
702
+ <show_in_default>1</show_in_default>
703
+ <show_in_website>0</show_in_website>
704
+ <show_in_store>0</show_in_store>
705
+ </price_shipping>
706
+ <processor translate="label">
707
+ <label>processor</label>
708
+ <comment>Processor type</comment>
709
+ <frontend_type>select</frontend_type>
710
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
711
+ <sort_order>57</sort_order>
712
+ <show_in_default>1</show_in_default>
713
+ <show_in_website>0</show_in_website>
714
+ <show_in_store>0</show_in_store>
715
+ </processor>
716
+ <publisher translate="label">
717
+ <label>publisher</label>
718
+ <comment>Publisher</comment>
719
+ <frontend_type>select</frontend_type>
720
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
721
+ <sort_order>58</sort_order>
722
+ <show_in_default>1</show_in_default>
723
+ <show_in_website>0</show_in_website>
724
+ <show_in_store>0</show_in_store>
725
+ </publisher>
726
+ <quantity_in_stock translate="label">
727
+ <label>quantity_in_stock</label>
728
+ <comment>Number of items in stock</comment>
729
+ <frontend_type>select</frontend_type>
730
+ <source_model>eems_affiliate/system_config_source_stockquantity</source_model>
731
+ <sort_order>59</sort_order>
732
+ <show_in_default>1</show_in_default>
733
+ <show_in_website>0</show_in_website>
734
+ <show_in_store>0</show_in_store>
735
+ </quantity_in_stock>
736
+ <rating translate="label">
737
+ <label>rating</label>
738
+ <comment>Rating</comment>
739
+ <frontend_type>select</frontend_type>
740
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
741
+ <sort_order>60</sort_order>
742
+ <show_in_default>1</show_in_default>
743
+ <show_in_website>0</show_in_website>
744
+ <show_in_store>0</show_in_store>
745
+ </rating>
746
+ <recommended_usage translate="label">
747
+ <label>recommended_usage</label>
748
+ <comment>Recommended usage</comment>
749
+ <frontend_type>select</frontend_type>
750
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
751
+ <sort_order>61</sort_order>
752
+ <show_in_default>1</show_in_default>
753
+ <show_in_website>0</show_in_website>
754
+ <show_in_store>0</show_in_store>
755
+ </recommended_usage>
756
+ <resolution translate="label">
757
+ <label>resolution</label>
758
+ <comment>Screen resolution</comment>
759
+ <frontend_type>select</frontend_type>
760
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
761
+ <sort_order>62</sort_order>
762
+ <show_in_default>1</show_in_default>
763
+ <show_in_website>0</show_in_website>
764
+ <show_in_store>0</show_in_store>
765
+ </resolution>
766
+ <screen_size translate="label">
767
+ <label>screen_size</label>
768
+ <comment>Screen size</comment>
769
+ <frontend_type>select</frontend_type>
770
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
771
+ <sort_order>63</sort_order>
772
+ <show_in_default>1</show_in_default>
773
+ <show_in_website>0</show_in_website>
774
+ <show_in_store>0</show_in_store>
775
+ </screen_size>
776
+ <shipping_method translate="label">
777
+ <label>shipping_method</label>
778
+ <comment>Shipping methods</comment>
779
+ <frontend_type>select</frontend_type>
780
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
781
+ <sort_order>64</sort_order>
782
+ <show_in_default>1</show_in_default>
783
+ <show_in_website>0</show_in_website>
784
+ <show_in_store>0</show_in_store>
785
+ </shipping_method>
786
+ <shoe_size translate="label">
787
+ <label>shoe_size</label>
788
+ <comment>Shoe size</comment>
789
+ <frontend_type>select</frontend_type>
790
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
791
+ <sort_order>65</sort_order>
792
+ <show_in_default>1</show_in_default>
793
+ <show_in_website>0</show_in_website>
794
+ <show_in_store>0</show_in_store>
795
+ </shoe_size>
796
+ <shoe_width translate="label">
797
+ <label>shoe_width</label>
798
+ <comment>Shoe width</comment>
799
+ <frontend_type>select</frontend_type>
800
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
801
+ <sort_order>66</sort_order>
802
+ <show_in_default>1</show_in_default>
803
+ <show_in_website>0</show_in_website>
804
+ <show_in_store>0</show_in_store>
805
+ </shoe_width>
806
+ <size translate="label">
807
+ <label>size</label>
808
+ <comment>Size</comment>
809
+ <frontend_type>select</frontend_type>
810
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
811
+ <sort_order>67</sort_order>
812
+ <show_in_default>1</show_in_default>
813
+ <show_in_website>0</show_in_website>
814
+ <show_in_store>0</show_in_store>
815
+ </size>
816
+ <sku translate="label">
817
+ <label>sku</label>
818
+ <comment>Stock keeping unit (Recommended)</comment>
819
+ <frontend_type>select</frontend_type>
820
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
821
+ <sort_order>68</sort_order>
822
+ <show_in_default>1</show_in_default>
823
+ <show_in_website>0</show_in_website>
824
+ <show_in_store>0</show_in_store>
825
+ </sku>
826
+ <staring translate="label">
827
+ <label>staring</label>
828
+ <comment>Staring actors</comment>
829
+ <frontend_type>select</frontend_type>
830
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
831
+ <sort_order>69</sort_order>
832
+ <show_in_default>1</show_in_default>
833
+ <show_in_website>0</show_in_website>
834
+ <show_in_store>0</show_in_store>
835
+ </staring>
836
+ <style translate="label">
837
+ <label>style</label>
838
+ <comment>Style</comment>
839
+ <frontend_type>select</frontend_type>
840
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
841
+ <sort_order>70</sort_order>
842
+ <show_in_default>1</show_in_default>
843
+ <show_in_website>0</show_in_website>
844
+ <show_in_store>0</show_in_store>
845
+ </style>
846
+ <tech_spec_url translate="label">
847
+ <label>tech_spec_url</label>
848
+ <comment>Technical specifications URL</comment>
849
+ <frontend_type>select</frontend_type>
850
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
851
+ <sort_order>71</sort_order>
852
+ <show_in_default>1</show_in_default>
853
+ <show_in_website>0</show_in_website>
854
+ <show_in_store>0</show_in_store>
855
+ </tech_spec_url>
856
+ <tracks translate="label">
857
+ <label>tracks</label>
858
+ <comment>Total number of tracks</comment>
859
+ <frontend_type>select</frontend_type>
860
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
861
+ <sort_order>72</sort_order>
862
+ <show_in_default>1</show_in_default>
863
+ <show_in_website>0</show_in_website>
864
+ <show_in_store>0</show_in_store>
865
+ </tracks>
866
+ <upc translate="label">
867
+ <label>upc</label>
868
+ <comment>Universal product code (Recommended)</comment>
869
+ <frontend_type>select</frontend_type>
870
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
871
+ <sort_order>73</sort_order>
872
+ <show_in_default>1</show_in_default>
873
+ <show_in_website>0</show_in_website>
874
+ <show_in_store>0</show_in_store>
875
+ </upc>
876
+ <weight translate="label">
877
+ <label>weight</label>
878
+ <comment>Weight</comment>
879
+ <frontend_type>select</frontend_type>
880
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
881
+ <sort_order>74</sort_order>
882
+ <show_in_default>1</show_in_default>
883
+ <show_in_website>0</show_in_website>
884
+ <show_in_store>0</show_in_store>
885
+ </weight>
886
+ <width translate="label">
887
+ <label>width</label>
888
+ <comment>Width</comment>
889
+ <frontend_type>select</frontend_type>
890
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
891
+ <sort_order>75</sort_order>
892
+ <show_in_default>1</show_in_default>
893
+ <show_in_website>0</show_in_website>
894
+ <show_in_store>0</show_in_store>
895
+ </width>
896
+ <wireless_interface translate="label">
897
+ <label>wireless_interface</label>
898
+ <comment>Wireless interface</comment>
899
+ <frontend_type>select</frontend_type>
900
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
901
+ <sort_order>76</sort_order>
902
+ <show_in_default>1</show_in_default>
903
+ <show_in_website>0</show_in_website>
904
+ <show_in_store>0</show_in_store>
905
+ </wireless_interface>
906
+ <year translate="label">
907
+ <label>year</label>
908
+ <comment>Year of manufacture - YYYY</comment>
909
+ <frontend_type>select</frontend_type>
910
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
911
+ <sort_order>77</sort_order>
912
+ <show_in_default>1</show_in_default>
913
+ <show_in_website>0</show_in_website>
914
+ <show_in_store>0</show_in_store>
915
+ </year>
916
+ <zoom translate="label">
917
+ <label>zoom</label>
918
+ <comment>Maximum zoom</comment>
919
+ <frontend_type>select</frontend_type>
920
+ <source_model>eems_affiliate/system_config_source_attributes</source_model>
921
+ <sort_order>78</sort_order>
922
+ <show_in_default>1</show_in_default>
923
+ <show_in_website>0</show_in_website>
924
+ <show_in_store>0</show_in_store>
925
+ </zoom>
926
+ </fields>
927
+ </eems_affiliate_product_attribute_map>
928
+ <uninstall translate="label comment">
929
+ <label>Uninstall Extension</label>
930
+ <comment>If you wish to uninstall this extension, please use this Uninstall button.</comment>
931
+ <sort_order>300</sort_order>
932
+ <show_in_default>1</show_in_default>
933
+ <show_in_website>0</show_in_website>
934
+ <show_in_store>0</show_in_store>
935
+ <fields>
936
+ <uninstall translate="label">
937
+ <label>Remove</label>
938
+ <frontend_type>button</frontend_type>
939
+ <frontend_model>eems_affiliate/adminhtml_system_config_form_button</frontend_model>
940
+ <sort_order>100</sort_order>
941
+ <show_in_default>1</show_in_default>
942
+ <show_in_website>0</show_in_website>
943
+ <show_in_store>0</show_in_store>
944
+ </uninstall>
945
+ </fields>
946
+ </uninstall>
947
+ </groups>
948
+ </marketing_solutions>
949
+ </sections>
950
+ </config>
app/design/adminhtml/default/default/template/eems_affiliate/system/config/button.phtml ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <script type="text/javascript">
2
+ function uninstall() {
3
+ if (confirm('Remove EbayEnterprise Affiliate extension?')) {
4
+ new Ajax.Request('<?php echo $this->getAjaxUninstallUrl(); ?>', {
5
+ method: 'get',
6
+ onSuccess: function(response) {
7
+ document.location.reload(true);
8
+ }
9
+ });
10
+ }
11
+ }
12
+ </script>
13
+
14
+ <?php echo $this->getButtonHtml(); ?>
app/design/frontend/base/default/template/eems_affiliate/beacon.phtml DELETED
@@ -1,35 +0,0 @@
1
- <?php
2
- /**
3
- * Copyright (c) 2014 eBay Enterprise, Inc.
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the eBay Enterprise
8
- * Magento Extensions End User License Agreement
9
- * that is bundled with this package in the file LICENSE.md.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://www.ebayenterprise.com/files/pdf/Magento_Connect_Extensions_EULA_050714.pdf
12
- *
13
- * @copyright Copyright (c) 2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/)
14
- * @license http://www.ebayenterprise.com/files/pdf/Magento_Connect_Extensions_EULA_050714.pdf eBay Enterprise Magento Extensions End User License Agreement
15
- *
16
- */
17
- ?>
18
-
19
- <?php if ($this->showBeacon()) :
20
- ?>
21
- <?php $beaconUrl = $this->getBeaconUrl(); ?>
22
- <script>
23
- (function (d,i) {
24
- i=d.createElement('iframe');
25
- i.width=i.height=1;
26
- i.frameBorder=0;
27
- i.src="<?php echo $beaconUrl; ?>";
28
- d.body.appendChild(i);
29
- }(document));
30
- </script>
31
- <noscript>
32
- <iframe width="1" height="1" frameBorder="0" src="<?php echo $beaconUrl; ?>"></iframe>
33
- </noscript>
34
- <?php
35
- endif;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/base/default/template/eems_affiliate/tracking.phtml DELETED
@@ -1,97 +0,0 @@
1
- <?php
2
- /**
3
- * Copyright (c) 2013-2014 eBay Enterprise, Inc.
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Open Software License (OSL 3.0)
8
- * that is bundled with this package in the file LICENSE.md.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/osl-3.0.php
11
- *
12
- * @copyright Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/)
13
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
14
- */
15
- ?>
16
-
17
- <?php if ($this->injectJavaScript()) :
18
- ?>
19
- <?php $keyName = $this->getQueryStringKeyName(); ?>
20
- <?php $cookieName = $this->getCookieName(); ?>
21
- <script type="text/javascript">
22
- //<![CDATA[
23
- (function (window, document, duration_in_days, key_name, cookie_name) {
24
- var milliseconds_in_days = 1000 * 60 * 60 * 24;
25
- var query = location.search.substring(1);
26
- var source = findAffiliateField(query, key_name);
27
- var cookie = getCookie(cookie_name);
28
-
29
- if (source) {
30
- // set or update the cookie with the value from the current query string
31
- setCookie(cookie_name, source, duration_in_days);
32
- }
33
-
34
- /**
35
- * @param cname name of the cookie
36
- * @param cvalue value assigned to cookie
37
- * @param exdays duration of the cookie in days
38
- */
39
- function setCookie(cname, cvalue, exdays)
40
- {
41
- var d = new Date();
42
- d.setTime(d.getTime() + (exdays * milliseconds_in_days));
43
- var expires = "expires="+d.toUTCString();
44
- document.cookie = cname + "=" + cvalue + "; " + expires + "; path=/";
45
- }
46
-
47
- /**
48
- * @param cname name of the cookie
49
- * @returns object | null object with the field and value or null if not found
50
- */
51
- function getCookie(cname)
52
- {
53
- var cookies = document.cookie.split(';');
54
- for (var i = 0; i < cookies.length; i++) {
55
- var keyPair = cookies[i].split('=');
56
- if (keyPair.length < 2)
57
- continue;
58
- var field = keyPair[0].trim();
59
- var value = keyPair[1].trim();
60
-
61
- if (field === cname) {
62
- return {field: value};
63
- }
64
- }
65
-
66
- return null;
67
- }
68
-
69
- /**
70
- * @param query query string minus the '?'
71
- * @param field query string field to search for
72
- * @returns string | null value of the query string field or null if the field isn't there
73
- */
74
- function findAffiliateField(query, field)
75
- {
76
- if (!query) {
77
- return null;
78
- }
79
-
80
- var fields = query.split("&");
81
- for (var i = 0; i < fields.length; i++) {
82
- var keyPair = fields[i].split("=");
83
- if (
84
- keyPair.length == 2 &&
85
- keyPair[0] === field
86
- ) {
87
- return keyPair[1];
88
- }
89
- }
90
-
91
- return null;
92
- }
93
- }(window, document, 365, "<?php echo $keyName ?>", "<?php echo $cookieName ?>"));
94
- //]]>
95
- </script>
96
- <?php
97
- endif;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
package.xml CHANGED
@@ -1,19 +1,19 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>eBay_Enterprise_Affiliate_Extension</name>
4
- <version>1.2.0.2</version>
5
  <stability>stable</stability>
6
- <license>EULA</license>
7
  <channel>community</channel>
8
  <extends/>
9
- <summary>Bay Enterprise Affiliate Extension.</summary>
10
- <description>Bay Enterprise Affiliate Extension.</description>
11
- <notes>Changelog for 1.2.0.2&#xD;
12
- Fixed issue where Bundle with fixed pricing.</notes>
13
  <authors><author><name>Philip Preston</name><user>phpreston</user><email>phpreston@pepperjam.com</email></author></authors>
14
- <date>2016-05-02</date>
15
- <time>17:27:55</time>
16
- <contents><target name="mageetc"><dir name="modules"><file name="EbayEnterprise_Affiliate.xml" hash="c67e54262d466adebba66b7cc0e2df8f"/></dir></target><target name="magecommunity"><dir name="EbayEnterprise"><dir name="Affiliate"><dir name="Block"><file name="Beacon.php" hash="08a376ac6747bd459b1462670a2774fd"/><file name="Tracking.php" hash="b8e8a1126f487f69dd575f5e14b630b9"/></dir><dir name="Exception"><file name="Configuration.php" hash="a5164f37b8e5e13dfc20561e13ec6c54"/></dir><dir name="Helper"><file name="Config.php" hash="166c7a5a4c3c7955ebf441e2a3d1bbc8"/><file name="Data.php" hash="04c3cf34e7a67ffc330607a4e16e91d5"/><dir name="Map"><file name="Order.php" hash="a53b5894c45d37b10eb50fa8f6c6c350"/><file name="Product.php" hash="f9f4b1337e040d52971fc7f669287c79"/></dir><file name="Map.php" hash="5329d762e01ed3cfe34dad14a9a59c01"/></dir><dir name="Model"><dir name="Feed"><file name="Abstract.php" hash="546bb078e115f4319a7e6052a4feaf4a"/><dir name="Order"><file name="Abstract.php" hash="676d28e0fa5677f70470eb7b32b45c16"/><file name="Basic.php" hash="a06460810245f18d4905dcf9a7bf5220"/><file name="Dynamic.php" hash="44601d213d1823d11d1598da7cab38b5"/><file name="Itemized.php" hash="f5ecb6e8b8f603a4717906aa4f130365"/></dir><file name="Product.php" hash="ecd0ac9efb2fd8feab577b888f8d55d7"/></dir><file name="Observer.php" hash="723ea0e39203210352ea3198b2840bce"/><dir name="Product"><dir name="Attribute"><dir name="Source"><file name="CommissioningCategory.php" hash="0dd81e0901e6519043b31c322516a977"/></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Attributes.php" hash="079b340ac5e2daa5197268c4464d2505"/><file name="Categories.php" hash="c412da8de21424e65628958a92eaa1c0"/><file name="Ordertypes.php" hash="bfa02f2a94175d49f192d77b9523e717"/><file name="Stockquantity.php" hash="0e4c5b6f0e45b10403c00660b54f3057"/><file name="Stockyesno.php" hash="154bedd15209f8110e69c80b207e7a68"/><file name="Transactiontype.php" hash="cd892832b62349c399ad147ba7217885"/><file name="Visibilityyesno.php" hash="b6de9a44184c9158d3be097b8cb4cec2"/></dir></dir></dir></dir><dir name="Test"><dir name="Block"><file name="BeaconTest.php" hash="c127f7453ab7ee6163760c518c698221"/><dir name="providers"><file name="testShowBeacon.yaml" hash="5b7a80f1de1e4196a9e56f9a71cb51a2"/></dir></dir><dir name="Helper"><file name="DataTest.php" hash="52be41226b17cd44eb29d97ec3ab4612"/><dir name="Map"><file name="ProductTest.php" hash="936eb3b538bd8c9ddc6a65c48a9df4d9"/></dir><dir name="providers"><file name="testIsValidCookie.yaml" hash="b3eb3eb30d78c7e67b7af51768b88492"/></dir></dir><dir name="Model"><dir name="Feed"><file name="AbstractTest.php" hash="98d14d1808a67917ce37fb4ba3b6c3cf"/><dir name="Order"><file name="AbstractTest.php" hash="83c0331bcc04784713ba55c7bad13c81"/><file name="BasicTest.php" hash="eea42c1eb603764f8332bbb4acf00ea5"/><file name="ItemizedTest.php" hash="c81153a22303700811670d0e912431c6"/></dir><file name="ProductTest.php" hash="2b33598eea0fab35aae2c0318d89de57"/></dir><file name="ObserverTest.php" hash="e0e1cd8b8170561513715ef9bbf64942"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="fccf9b602bb22175bfb81148cb216644"/><file name="config.xml" hash="16806da6666d19ccd1e0f9f8ae77e733"/><file name="system.xml" hash="ae97dcdaebedcdb3416a18584cd609c8"/></dir><dir name="sql"><dir name="eems_affiliate_setup"><file name="install-1.0.0.1.php" hash="1872e6830dc200364c24f76841b41832"/><file name="mysql4-install-1.0.0.1.php" hash="1872e6830dc200364c24f76841b41832"/><file name="mysql4-upgrade-1.0.0.1-1.2.0.0.php" hash="483d015528132052ad8ca0a07ea8efed"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="eems_affiliate.xml" hash="7d0b7b9a18086a9a61099a753d82f4fc"/></dir><dir name="template"><dir name="eems_affiliate"><file name="beacon.phtml" hash="40d3b19edc66bc22b5dc5ffbeec2507a"/><file name="tracking.phtml" hash="44fb259a8e0e0cf33c7b042976a325c3"/></dir></dir></dir></dir></dir></target></contents>
17
  <compatible/>
18
- <dependencies><required><php><min>5.3.0</min><max>5.99.99</max></php></required></dependencies>
19
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>eBay_Enterprise_Affiliate_Extension</name>
4
+ <version>1.2.1.0</version>
5
  <stability>stable</stability>
6
+ <license uri="http://assets.pepperjam.com/legal/magento-connect-extension-eula.pdf">EULA</license>
7
  <channel>community</channel>
8
  <extends/>
9
+ <summary>Please use the uninstall button in the EEAN extension configuration settings. Using this uninstall method may cause issues after the extension is removed.</summary>
10
+ <description>Please use the uninstall button in the EEAN extension configuration settings. Using this uninstall method may cause issues after the extension is removed.</description>
11
+ <notes>1.2.1.0 Release Notes&#xD;
12
+ Added uninstall button to prevent errors when using magento connect.</notes>
13
  <authors><author><name>Philip Preston</name><user>phpreston</user><email>phpreston@pepperjam.com</email></author></authors>
14
+ <date>2016-05-11</date>
15
+ <time>20:10:24</time>
16
+ <contents><target name="mageetc"><dir name="modules"><file name="EbayEnterprise_Affiliate.xml" hash="c67e54262d466adebba66b7cc0e2df8f"/></dir></target><target name="magecommunity"><dir name="EbayEnterprise"><dir name="Affiliate"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><dir name="Form"><file name="Button.php" hash="dd87ef3bb3e4defeca503a2d1561e643"/></dir></dir></dir></dir><file name="Beacon.php" hash="08a376ac6747bd459b1462670a2774fd"/><file name="Tracking.php" hash="b8e8a1126f487f69dd575f5e14b630b9"/></dir><dir name="Exception"><file name="Configuration.php" hash="a5164f37b8e5e13dfc20561e13ec6c54"/></dir><dir name="Helper"><file name="Config.php" hash="166c7a5a4c3c7955ebf441e2a3d1bbc8"/><file name="Data.php" hash="04c3cf34e7a67ffc330607a4e16e91d5"/><dir name="Map"><file name="Order.php" hash="a53b5894c45d37b10eb50fa8f6c6c350"/><file name="Product.php" hash="f9f4b1337e040d52971fc7f669287c79"/></dir><file name="Map.php" hash="5329d762e01ed3cfe34dad14a9a59c01"/></dir><dir name="Model"><dir name="Feed"><file name="Abstract.php" hash="546bb078e115f4319a7e6052a4feaf4a"/><dir name="Order"><file name="Abstract.php" hash="676d28e0fa5677f70470eb7b32b45c16"/><file name="Basic.php" hash="a06460810245f18d4905dcf9a7bf5220"/><file name="Dynamic.php" hash="44601d213d1823d11d1598da7cab38b5"/><file name="Itemized.php" hash="f5ecb6e8b8f603a4717906aa4f130365"/></dir><file name="Product.php" hash="ecd0ac9efb2fd8feab577b888f8d55d7"/></dir><file name="Observer.php" hash="723ea0e39203210352ea3198b2840bce"/><dir name="Product"><dir name="Attribute"><dir name="Source"><file name="CommissioningCategory.php" hash="0dd81e0901e6519043b31c322516a977"/></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Attributes.php" hash="079b340ac5e2daa5197268c4464d2505"/><file name="Categories.php" hash="c412da8de21424e65628958a92eaa1c0"/><file name="Ordertypes.php" hash="bfa02f2a94175d49f192d77b9523e717"/><file name="Stockquantity.php" hash="0e4c5b6f0e45b10403c00660b54f3057"/><file name="Stockyesno.php" hash="154bedd15209f8110e69c80b207e7a68"/><file name="Transactiontype.php" hash="cd892832b62349c399ad147ba7217885"/><file name="Visibilityyesno.php" hash="b6de9a44184c9158d3be097b8cb4cec2"/></dir></dir></dir></dir><dir name="Test"><dir name="Block"><file name="BeaconTest.php" hash="c127f7453ab7ee6163760c518c698221"/><dir name="providers"><file name="testShowBeacon.yaml" hash="5b7a80f1de1e4196a9e56f9a71cb51a2"/></dir></dir><dir name="Helper"><file name="DataTest.php" hash="52be41226b17cd44eb29d97ec3ab4612"/><dir name="Map"><file name="ProductTest.php" hash="936eb3b538bd8c9ddc6a65c48a9df4d9"/></dir><dir name="providers"><file name="testIsValidCookie.yaml" hash="b3eb3eb30d78c7e67b7af51768b88492"/></dir></dir><dir name="Model"><dir name="Feed"><file name="AbstractTest.php" hash="98d14d1808a67917ce37fb4ba3b6c3cf"/><dir name="Order"><file name="AbstractTest.php" hash="83c0331bcc04784713ba55c7bad13c81"/><file name="BasicTest.php" hash="eea42c1eb603764f8332bbb4acf00ea5"/><file name="ItemizedTest.php" hash="c81153a22303700811670d0e912431c6"/></dir><file name="ProductTest.php" hash="2b33598eea0fab35aae2c0318d89de57"/></dir><file name="ObserverTest.php" hash="e0e1cd8b8170561513715ef9bbf64942"/></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="EemsAffiliateController.php" hash="47f3da6bae4814a397e05c01b3638f64"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="fccf9b602bb22175bfb81148cb216644"/><file name="config.xml" hash="ceba9f7bac5999a51b5ddd3948c63ee4"/><file name="system.xml" hash="d5b780f3a44df676a272217a84e9746a"/></dir><dir name="sql"><dir name="eems_affiliate_setup"><file name="install-1.0.0.1.php" hash="1872e6830dc200364c24f76841b41832"/><file name="mysql4-install-1.0.0.1.php" hash="1872e6830dc200364c24f76841b41832"/><file name="mysql4-upgrade-1.0.0.1-1.2.0.0.php" hash="483d015528132052ad8ca0a07ea8efed"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="eems_affiliate"><dir name="system"><dir name="config"><file name="button.phtml" hash="3dc15ce1d9a1e974d52cc33adf961156"/></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="eems_affiliate.xml" hash="7d0b7b9a18086a9a61099a753d82f4fc"/></dir></dir></dir></dir></target></contents>
17
  <compatible/>
18
+ <dependencies><required><php><min>5.2.0</min><max>5.99.99</max></php></required></dependencies>
19
  </package>