-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathexport.php
82 lines (54 loc) · 1.94 KB
/
export.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?php
require_once 'bootstrap.php';
require_once 'export_product.php';
require_once 'export_attribute.php';
require_once 'export_attribute_set.php';
$attributeSetNames = array(
'Default'
);
if (!Arguments::hasArgs()) {
echo "No arugmets given !!!! [--set --attr --products ] \n";
exit(0);
}
/*
|--------------------------------------------------------------------------
| Attribute Set Export
|--------------------------------------------------------------------------
*/
if (Arguments::getArg('set')) {
echo "Collecting all attribute set..... \n";
$fileName = MAGENTO . '/var/importAttributeSet.csv';
$attrSetExporter = new ArrtibuteSetExporter();
$result = $attrSetExporter->export($attributeSetNames, $fileName, Arguments::getArg('products'));
unset($attrSetExporter);
echo "\nMEMORY USED : ".convert(memory_get_usage(true)) . "\n\n";
}
/*
|--------------------------------------------------------------------------
| Attribute Export
|--------------------------------------------------------------------------
*/
if (Arguments::getArg('attr')) {
echo "Collecting all attribute..... \n";
$fileName = MAGENTO . '/var/importAttribute.csv';
$attrExporter = new ArrtibuteExporter();
$attrExporter->export(array_unique($result[0]), $fileName);
unset($attrExporter);
echo "\nMEMORY USED : ".convert(memory_get_usage(true)) . "\n\n";
}
/*
|--------------------------------------------------------------------------
| Product Export
|--------------------------------------------------------------------------
*/
if (Arguments::getArg('products')) {
echo "Collecting all product..... \n";
$fileName = MAGENTO . '/var/product.csv';
// Execute the product export
$exporter = new ProductExporter();
$exporter->export(array_unique($result[1]), $fileName);
echo "\n";
echo "$fileName \n\n";
unset($exporter);
echo "MEMORY USED : ".convert(memory_get_usage(true)) . "\n";
}