Version Notes
wisepricer
Download this release
Release Info
Developer | Magento Core Team |
Extension | Wisepricer_Syncer |
Version | 1.1.2.8 |
Comparing to | |
See all releases |
Code changes from version 1.1.2.7 to 1.1.2.8
- app/code/local/Wisepricer/Syncer/Block/Adminhtml/Register.php +15 -0
- app/code/local/Wisepricer/Syncer/Model/Reprice.php +62 -0
- app/code/local/Wisepricer/Syncer/controllers/ProductsController.php +75 -35
- app/code/local/Wisepricer/Syncer/etc/config.xml +1 -1
- app/code/local/Wisepricer/Syncer/sql/syncer_setup/{mysql4-install-1.1.2.7.php → mysql4-install-1.1.2.8.php} +0 -0
- package.xml +4 -4
app/code/local/Wisepricer/Syncer/Block/Adminhtml/Register.php
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/******************************************
|
3 |
+
* wisepricer *
|
4 |
+
******************************************/
|
5 |
+
|
6 |
+
class Wisepricer_Syncer_Block_Adminhtml_Register extends Mage_Adminhtml_Block_Widget_Form_Container
|
7 |
+
{
|
8 |
+
|
9 |
+
public function getHeader()
|
10 |
+
{
|
11 |
+
$header = "Wisepricer Register";
|
12 |
+
return $header;
|
13 |
+
}
|
14 |
+
}
|
15 |
+
?>
|
app/code/local/Wisepricer/Syncer/Model/Reprice.php
ADDED
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class Wisepricer_Syncer_Model_Reprice extends Mage_Core_Model_Abstract{
|
4 |
+
|
5 |
+
private function _getConnection($type = 'core_read'){
|
6 |
+
return Mage::getSingleton('core/resource')->getConnection($type);
|
7 |
+
}
|
8 |
+
|
9 |
+
private function _getTableName($tableName){
|
10 |
+
return Mage::getSingleton('core/resource')->getTableName($tableName);
|
11 |
+
}
|
12 |
+
|
13 |
+
private function _getAttributeId($attribute_code = 'price'){
|
14 |
+
$connection = $this->_getConnection('core_read');
|
15 |
+
$sql = "SELECT attribute_id
|
16 |
+
FROM " . $this->_getTableName('eav_attribute') . "
|
17 |
+
WHERE
|
18 |
+
entity_type_id = ?
|
19 |
+
AND attribute_code = ?";
|
20 |
+
$entity_type_id = $this->_getEntityTypeId();
|
21 |
+
return $connection->fetchOne($sql, array($entity_type_id, $attribute_code));
|
22 |
+
}
|
23 |
+
|
24 |
+
private function _getEntityTypeId($entity_type_code = 'catalog_product'){
|
25 |
+
$connection = $this->_getConnection('core_read');
|
26 |
+
$sql = "SELECT entity_type_id FROM " . $this->_getTableName('eav_entity_type') . " WHERE entity_type_code = ?";
|
27 |
+
return $connection->fetchOne($sql, array($entity_type_code));
|
28 |
+
}
|
29 |
+
|
30 |
+
private function _getIdFromSku($sku){
|
31 |
+
$connection = $this->_getConnection('core_read');
|
32 |
+
$sql = "SELECT entity_id FROM " . $this->_getTableName('catalog_product_entity') . " WHERE sku = ?";
|
33 |
+
return $connection->fetchOne($sql, array($sku));
|
34 |
+
|
35 |
+
}
|
36 |
+
|
37 |
+
public function checkIfSkuExists($sku){
|
38 |
+
$connection = $this->_getConnection('core_read');
|
39 |
+
$sql = "SELECT COUNT(*) AS count_no FROM " . $this->_getTableName('catalog_product_entity') . " WHERE sku = ?";
|
40 |
+
$count = $connection->fetchOne($sql, array($sku));
|
41 |
+
if($count > 0){
|
42 |
+
return true;
|
43 |
+
}else{
|
44 |
+
return false;
|
45 |
+
}
|
46 |
+
}
|
47 |
+
|
48 |
+
public function updatePrices($prodArr){
|
49 |
+
$connection = $this->_getConnection('core_write');
|
50 |
+
$sku = $prodArr->sku;
|
51 |
+
$newPrice = $prodArr->price;
|
52 |
+
$productId = $this->_getIdFromSku($sku);
|
53 |
+
$attributeId = $this->_getAttributeId();
|
54 |
+
|
55 |
+
$sql = "UPDATE " . $this->_getTableName('catalog_product_entity_decimal') . " cped
|
56 |
+
SET cped.value = ?
|
57 |
+
WHERE cped.attribute_id = ?
|
58 |
+
AND cped.entity_id = ?";
|
59 |
+
$connection->query($sql, array($newPrice, $attributeId, $productId));
|
60 |
+
}
|
61 |
+
}
|
62 |
+
?>
|
app/code/local/Wisepricer/Syncer/controllers/ProductsController.php
CHANGED
@@ -38,7 +38,6 @@ class Wisepricer_Syncer_ProductsController extends Mage_Core_Controller_Front_Ac
|
|
38 |
die;
|
39 |
}
|
40 |
|
41 |
-
//decryption process
|
42 |
|
43 |
$startInd = $post['start'];
|
44 |
if(!$startInd){
|
@@ -223,11 +222,12 @@ class Wisepricer_Syncer_ProductsController extends Mage_Core_Controller_Front_Ac
|
|
223 |
$post = $this->getRequest()->getParams();
|
224 |
|
225 |
$lisensekeyEncr = $post['licensekey'];
|
226 |
-
Mage::log(print_r($lisensekeyEncr,true),null,'wplog.log');
|
227 |
$lisensekeyEncr=pack('H*', $lisensekeyEncr);
|
228 |
-
Mage::log(print_r($lisensekeyEncr,true),null,'wplog.log');
|
229 |
$lisensekey=$this->_decryptstring($lisensekeyEncr);
|
230 |
-
Mage::log(print_r($lisensekey,true),null,'wplog.log');
|
|
|
231 |
if($licenseData->getLicensekey()!=$lisensekey){
|
232 |
|
233 |
$returnArr=array(
|
@@ -335,8 +335,9 @@ class Wisepricer_Syncer_ProductsController extends Mage_Core_Controller_Front_Ac
|
|
335 |
}
|
336 |
|
337 |
public function repriceAction(){
|
338 |
-
|
339 |
-
|
|
|
340 |
if(!$licenseData->getData()||$licenseData->getIs_confirmed()==0){
|
341 |
|
342 |
$returnArr=array(
|
@@ -350,11 +351,10 @@ class Wisepricer_Syncer_ProductsController extends Mage_Core_Controller_Front_Ac
|
|
350 |
|
351 |
$post = $this->getRequest()->getParams();
|
352 |
|
353 |
-
$
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
if($licenseData->getLicensekey()!=$lisensekey){
|
358 |
|
359 |
$returnArr=array(
|
360 |
'status'=>'failure',
|
@@ -363,50 +363,90 @@ class Wisepricer_Syncer_ProductsController extends Mage_Core_Controller_Front_Ac
|
|
363 |
);
|
364 |
echo json_encode($returnArr);
|
365 |
die;
|
366 |
-
}
|
367 |
|
368 |
$productsEncoded= $post['products'];
|
369 |
$products =json_decode(urldecode ($productsEncoded));
|
370 |
$responseArr=array();
|
371 |
$sucessCounter=0;
|
372 |
$failedCounter=0;
|
373 |
-
|
374 |
-
|
375 |
-
$product = $model->load($model->getIdBySku($prodArr->sku));
|
376 |
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
$responseArr[]=array('sku'=>$prodArr->sku,'error_code'=>'0');
|
389 |
-
$sucessCounter++;
|
390 |
-
}else{
|
391 |
-
$responseArr[]=array('sku'=>$prodArr->sku,'error_code'=>'333','error_details'=>'SKU could not be loaded');
|
392 |
$failedCounter++;
|
393 |
-
|
394 |
-
}
|
395 |
-
|
396 |
-
|
|
|
397 |
}
|
398 |
|
399 |
|
400 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
401 |
|
402 |
$returnArr=array();
|
403 |
$returnArr['ResultData']= $responseArr;
|
404 |
$returnArr['Succeeded']=$sucessCounter;
|
405 |
-
$returnArr['Failed']=$failedCounter;
|
|
|
|
|
406 |
echo json_encode($returnArr);
|
407 |
die;
|
408 |
}
|
409 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
410 |
public function generatejasonAction(){
|
411 |
$result['products']=array(
|
412 |
array(
|
38 |
die;
|
39 |
}
|
40 |
|
|
|
41 |
|
42 |
$startInd = $post['start'];
|
43 |
if(!$startInd){
|
222 |
$post = $this->getRequest()->getParams();
|
223 |
|
224 |
$lisensekeyEncr = $post['licensekey'];
|
225 |
+
//Mage::log(print_r($lisensekeyEncr,true),null,'wplog.log');
|
226 |
$lisensekeyEncr=pack('H*', $lisensekeyEncr);
|
227 |
+
//Mage::log(print_r($lisensekeyEncr,true),null,'wplog.log');
|
228 |
$lisensekey=$this->_decryptstring($lisensekeyEncr);
|
229 |
+
//Mage::log('Received: '.print_r($lisensekey,true),null,'wplog.log');
|
230 |
+
//Mage::log('Stored: '.print_r($licenseData->getLicensekey(),true),null,'wplog.log');
|
231 |
if($licenseData->getLicensekey()!=$lisensekey){
|
232 |
|
233 |
$returnArr=array(
|
335 |
}
|
336 |
|
337 |
public function repriceAction(){
|
338 |
+
Mage::log(print_r('Entered reprice action',true),null,'wplog.log');
|
339 |
+
set_time_limit (1800);
|
340 |
+
$licenseData =Mage::getModel('wisepricer_syncer/config')->load(1);
|
341 |
if(!$licenseData->getData()||$licenseData->getIs_confirmed()==0){
|
342 |
|
343 |
$returnArr=array(
|
351 |
|
352 |
$post = $this->getRequest()->getParams();
|
353 |
|
354 |
+
$magentoSessionId=Mage::getModel('core/cookie')->get('wpsession');
|
355 |
+
Mage::log(print_r('Received session'.$post['sesssionid'],true),null,'wplog.log');
|
356 |
+
Mage::log(print_r('Stored session'.$magentoSessionId,true),null,'wplog.log');
|
357 |
+
if($magentoSessionId!=$post['sesssionid']){
|
|
|
358 |
|
359 |
$returnArr=array(
|
360 |
'status'=>'failure',
|
363 |
);
|
364 |
echo json_encode($returnArr);
|
365 |
die;
|
366 |
+
}
|
367 |
|
368 |
$productsEncoded= $post['products'];
|
369 |
$products =json_decode(urldecode ($productsEncoded));
|
370 |
$responseArr=array();
|
371 |
$sucessCounter=0;
|
372 |
$failedCounter=0;
|
373 |
+
Mage::log(print_r('repricing '.count($products),true),null,'wplog.log');
|
374 |
+
$repriceModel=Mage::getModel('wisepricer_syncer/reprice');
|
|
|
375 |
|
376 |
+
foreach ($products as $prodArr) {
|
377 |
+
|
378 |
+
if ($repriceModel->checkIfSkuExists($prodArr->sku)) {
|
379 |
+
try {
|
380 |
+
|
381 |
+
$repriceModel->updatePrices($prodArr);
|
382 |
+
$responseArr[]=array('sku'=>$prodArr->sku,'price'=>$prodArr->price,'error_code'=>'0');
|
383 |
+
$sucessCounter++;
|
384 |
+
|
385 |
+
} catch (Exception $exc) {
|
386 |
+
$responseArr[]=array('sku'=>$prodArr->sku,'error_code'=>'444','error_details'=>$exc->getMessage());
|
|
|
|
|
|
|
|
|
387 |
$failedCounter++;
|
388 |
+
}
|
389 |
+
}else{
|
390 |
+
$responseArr[]=array('sku'=>$prodArr->sku,'error_code'=>'333','error_details'=>'SKU could not be loaded');
|
391 |
+
$failedCounter++;
|
392 |
+
|
393 |
}
|
394 |
|
395 |
|
396 |
}
|
397 |
+
Mage::log(print_r('finished repricing',true),null,'wplog.log');
|
398 |
+
if($sucessCounter==0){
|
399 |
+
$error_code=-1;
|
400 |
+
$error_details='Magento could not update any product.';
|
401 |
+
}else{
|
402 |
+
$error_code=0;
|
403 |
+
$error_details='';
|
404 |
+
}
|
405 |
|
406 |
$returnArr=array();
|
407 |
$returnArr['ResultData']= $responseArr;
|
408 |
$returnArr['Succeeded']=$sucessCounter;
|
409 |
+
$returnArr['Failed']=$failedCounter;
|
410 |
+
$returnArr['error_code']=$error_code;
|
411 |
+
$returnArr['error_details']=$error_details;
|
412 |
echo json_encode($returnArr);
|
413 |
die;
|
414 |
}
|
415 |
|
416 |
+
public function reindexAction(){
|
417 |
+
|
418 |
+
Mage::log(print_r('Entered reindex action',true),null,'wplog.log');
|
419 |
+
|
420 |
+
$licenseData =Mage::getModel('wisepricer_syncer/config')->load(1);
|
421 |
+
if(!$licenseData->getData()||$licenseData->getIs_confirmed()==0){
|
422 |
+
|
423 |
+
$returnArr=array(
|
424 |
+
'status'=>'failure',
|
425 |
+
'error_code'=>'769',
|
426 |
+
'error_details'=>'The user has not completed the integration.'
|
427 |
+
);
|
428 |
+
echo json_encode($returnArr);
|
429 |
+
die;
|
430 |
+
}
|
431 |
+
|
432 |
+
$post = $this->getRequest()->getParams();
|
433 |
+
|
434 |
+
$magentoSessionId=Mage::getModel('core/cookie')->get('wpsession');
|
435 |
+
//Mage::log(print_r('Received session'.$post['sesssionid'],true),null,'wplog.log');
|
436 |
+
//Mage::log(print_r('Stored session'.$magentoSessionId,true),null,'wplog.log');
|
437 |
+
if($magentoSessionId!=$post['sesssionid']){
|
438 |
+
|
439 |
+
$returnArr=array(
|
440 |
+
'status'=>'failure',
|
441 |
+
'error_code'=>'771',
|
442 |
+
'error_details'=>'Unauthorized access.'
|
443 |
+
);
|
444 |
+
echo json_encode($returnArr);
|
445 |
+
die;
|
446 |
+
}
|
447 |
+
Mage::getSingleton('index/indexer')->getProcessByCode('catalog_product_price')->reindexAll();
|
448 |
+
}
|
449 |
+
|
450 |
public function generatejasonAction(){
|
451 |
$result['products']=array(
|
452 |
array(
|
app/code/local/Wisepricer/Syncer/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Wisepricer_Syncer>
|
5 |
-
<version>1.1.2.
|
6 |
<url>http://www.wisepricer.com/index.php</url>
|
7 |
<modulename>Wisepricer Syncer</modulename>
|
8 |
</Wisepricer_Syncer>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Wisepricer_Syncer>
|
5 |
+
<version>1.1.2.8</version>
|
6 |
<url>http://www.wisepricer.com/index.php</url>
|
7 |
<modulename>Wisepricer Syncer</modulename>
|
8 |
</Wisepricer_Syncer>
|
app/code/local/Wisepricer/Syncer/sql/syncer_setup/{mysql4-install-1.1.2.7.php → mysql4-install-1.1.2.8.php}
RENAMED
File without changes
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Wisepricer_Syncer</name>
|
4 |
-
<version>1.1.2.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL</license>
|
7 |
<channel>community</channel>
|
@@ -10,9 +10,9 @@
|
|
10 |
<description>WisePricer is a new tool that allows you to Track & monitor successful online retailers and update your store prices in real-time. With WisePricer you’ll never get left behind the competition.</description>
|
11 |
<notes>wisepricer</notes>
|
12 |
<authors><author><name>Moshe</name><user>auto-converted</user><email>moshe@wisepricer.com</email></author></authors>
|
13 |
-
<date>2012-
|
14 |
-
<time>
|
15 |
-
<contents><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="wisepricer"><file name="bullet-green.png" hash="78d917a9d9aea11366bada6e0ae53931"/><file name="validation_advice_bg.gif" hash="ffdad80de989e3b04a977be3778c4347"/><file name="wp-alert-icon.png" hash="0dbbadfbbe2329098d03f8351aa2eaf2"/><file name="wp-logo.png" hash="48db98cdfc570336c942271352f31094"/><file name="wp-save-btn.png" hash="6d8e02c7f5e54dcc705e6436f126c66d"/></dir></dir><dir name="wisepricer"><file name="chosen-sprite.png" hash="8e70d120437ffc6a1bf7cebeca292d5c"/><file name="chosen.css" hash="a1b7280ed62dbe210257027dd6bfa073"/><file name="chosen.proto.js" hash="b98b346e60d90e7e3f83106cf860dacd"/><file name="myprototype.js" hash="3b4b13dad33b475e11feb26fd3468ecc"/><file name="prototype17.js" hash="3b4b13dad33b475e11feb26fd3468ecc"/><file name="wisepricer.css" hash="bab3eada0e2a974b1f8f7a87cbf5bb9c"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="syncer.xml" hash="a9d0f0b5af6b7bc28fb3c3b897c1773c"/></dir><dir name="template"><dir name="wisepricer"><file name="mapping.phtml" hash="8c8f177dc6f5097c422c6bc783542b5f"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Wisepricer_Syncer.xml" hash="838dc229469d27db4c96a49591b12f55"/></dir></target><target name="magelocal"><dir name="Wisepricer"><dir name="Syncer"><dir name="Block"><dir name="Adminhtml"><file name="Mapping.php" hash="ce3249eb8500db5ba9a60eb788437fed"/></dir></dir><dir name="controllers"><file name="ProductsController.php" hash="
|
16 |
<compatible/>
|
17 |
<dependencies/>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Wisepricer_Syncer</name>
|
4 |
+
<version>1.1.2.8</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://www.opensource.org/licenses/osl-3.0.php">OSL</license>
|
7 |
<channel>community</channel>
|
10 |
<description>WisePricer is a new tool that allows you to Track & monitor successful online retailers and update your store prices in real-time. With WisePricer you’ll never get left behind the competition.</description>
|
11 |
<notes>wisepricer</notes>
|
12 |
<authors><author><name>Moshe</name><user>auto-converted</user><email>moshe@wisepricer.com</email></author></authors>
|
13 |
+
<date>2012-10-03</date>
|
14 |
+
<time>10:42:03</time>
|
15 |
+
<contents><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="wisepricer"><file name="bullet-green.png" hash="78d917a9d9aea11366bada6e0ae53931"/><file name="validation_advice_bg.gif" hash="ffdad80de989e3b04a977be3778c4347"/><file name="wp-alert-icon.png" hash="0dbbadfbbe2329098d03f8351aa2eaf2"/><file name="wp-logo.png" hash="48db98cdfc570336c942271352f31094"/><file name="wp-save-btn.png" hash="6d8e02c7f5e54dcc705e6436f126c66d"/></dir></dir><dir name="wisepricer"><file name="chosen-sprite.png" hash="8e70d120437ffc6a1bf7cebeca292d5c"/><file name="chosen.css" hash="a1b7280ed62dbe210257027dd6bfa073"/><file name="chosen.proto.js" hash="b98b346e60d90e7e3f83106cf860dacd"/><file name="myprototype.js" hash="3b4b13dad33b475e11feb26fd3468ecc"/><file name="prototype17.js" hash="3b4b13dad33b475e11feb26fd3468ecc"/><file name="wisepricer.css" hash="bab3eada0e2a974b1f8f7a87cbf5bb9c"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="syncer.xml" hash="a9d0f0b5af6b7bc28fb3c3b897c1773c"/></dir><dir name="template"><dir name="wisepricer"><file name="mapping.phtml" hash="8c8f177dc6f5097c422c6bc783542b5f"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Wisepricer_Syncer.xml" hash="838dc229469d27db4c96a49591b12f55"/></dir></target><target name="magelocal"><dir name="Wisepricer"><dir name="Syncer"><dir name="Block"><dir name="Adminhtml"><file name="Mapping.php" hash="ce3249eb8500db5ba9a60eb788437fed"/><file name="Register.php" hash="ed2ffde3237ecba2dbdd6002b5077af3"/></dir></dir><dir name="controllers"><file name="ProductsController.php" hash="1736751e02d217312d7705dcd951d5bc"/><dir name="Adminhtml"><file name="SyncerController.php" hash="453e3352d35836128a24280471362866"/></dir></dir><dir name="etc"><file name="config.xml" hash="0f80762de0d7ce1c2b63e106b15120d8"/></dir><dir name="Helper"><file name="Data.php" hash="025b73c04ab0ca01d2e7c75aaad7fea6"/></dir><dir name="lib"><dir name="phpseclib"><dir name="Crypt"><file name="AES.php" hash="dd67dd1dbc7706e6c740e8430054d5e0"/><file name="DES.php" hash="47ac443f1edd2833cdc2f4eb80aa9a71"/><file name="Hash.php" hash="9be22f6426f2176caebb34a6cd2cb579"/><file name="Random.php" hash="5befc55c3423792c0cd50bc6d4f527b1"/><file name="RC4.php" hash="c6ec724c3a5d807d5ea4645518c37d29"/><file name="Rijndael.php" hash="7a92c95c750dd9ec1b8ce92915b4aa35"/><file name="RSA.php" hash="9bd5734f28d149d183c603643f6dbbb4"/><file name="TripleDES.php" hash="07c384b505d52802803313126e9e3836"/></dir><dir name="Math"><file name="BigInteger.php" hash="61aa9373ea606c928187d168159ac3f8"/></dir><dir name="Net"><file name="SFTP.php" hash="029f797c16ddd23b1d65636a72141115"/><file name="SSH1.php" hash="818d83815fe9bb5741594226bbdad975"/><file name="SSH2.php" hash="db5145effae044c7a1f6e7d778b566f5"/></dir><dir name="PHP"><dir name="Compat"><dir name="Function"><file name="array_fill.php" hash="840a674cac272c5588fa59f9421ed9a3"/><file name="bcpowmod.php" hash="4cb8fab0ee419f4b5a626980bbf04938"/><file name="str_split.php" hash="85cb5961afa62dde933190ee851a6d9a"/></dir></dir></dir></dir></dir><dir name="Model"><file name="Config.php" hash="d669c3dc977ddf71a58c90fa8df3180c"/><file name="Mapping.php" hash="d924ae8bcf54a3ca1224e8680d847fee"/><file name="Reprice.php" hash="dd1f6f4b0031940b1c695aefbf8f47e9"/><dir name="Adminhtml"><file name="Attributes.php" hash="2d50a30f0e7df8cf5791aea101f9008a"/></dir><dir name="Mysql4"><file name="Config.php" hash="61b7eb73489844aa0ee041c216bab2db"/><file name="Mapping.php" hash="d97574adda931ce798964c67041f6af5"/><dir name="Config"><file name="Collection.php" hash="c7c7b6844e3ff8893163c392f4132f30"/></dir><dir name="Mapping"><file name="Collection.php" hash="c0f15143db582e070cfb83de92c57d09"/></dir></dir></dir><dir name="sql"><dir name="syncer_setup"><file name="mysql4-install-1.1.2.8.php" hash="25b666bcc330f7aeebc2c9759f82273f"/></dir></dir></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies/>
|
18 |
</package>
|