Version Notes
Print_Science_Designer_Web_to_Print
Download this release
Release Info
| Developer | John Weissberg |
| Extension | Print_Science_Designer_Web_to_Print |
| Version | 1.0.11 |
| Comparing to | |
| See all releases | |
Code changes from version 1.0.9 to 1.0.11
- app/code/local/PrintScience/Personalization/Helper/Data.php +8 -0
- app/code/local/PrintScience/Personalization/Model/ApiGateway.php +113 -25
- app/code/local/PrintScience/Personalization/Model/ApiGateway/Response/GetPreview.php +16 -5
- app/code/local/PrintScience/Personalization/Model/System/Config/Source/ApiVersion.php +16 -0
- app/code/local/PrintScience/Personalization/etc/config.xml +8 -1
- app/code/local/PrintScience/Personalization/etc/system.xml +11 -2
- package.xml +4 -4
app/code/local/PrintScience/Personalization/Helper/Data.php
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* Print Science personalization data helper
|
| 4 |
+
*
|
| 5 |
+
*/
|
| 6 |
+
class PrintScience_Personalization_Helper_Data extends Mage_Core_Helper_Abstract
|
| 7 |
+
{
|
| 8 |
+
}
|
app/code/local/PrintScience/Personalization/Model/ApiGateway.php
CHANGED
|
@@ -18,18 +18,61 @@ class PrintScience_Personalization_Model_ApiGateway
|
|
| 18 |
*/
|
| 19 |
public function beginPersonalization($templateId, $successUrl, $failUrl, $cancelUrl)
|
| 20 |
{
|
| 21 |
-
$
|
| 22 |
-
|
| 23 |
-
$
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 33 |
$response = $client->send($function);
|
| 34 |
|
| 35 |
return new PrintScience_Personalization_Model_ApiGateway_Response_Begin($response);
|
|
@@ -81,19 +124,64 @@ class PrintScience_Personalization_Model_ApiGateway
|
|
| 81 |
*/
|
| 82 |
public function resumePersonalization($sessionKey, $templateId, $successUrl, $failUrl, $cancelUrl)
|
| 83 |
{
|
| 84 |
-
$
|
| 85 |
-
|
| 86 |
-
$
|
| 87 |
-
|
| 88 |
-
|
| 89 |
-
|
| 90 |
-
|
| 91 |
-
|
| 92 |
-
|
| 93 |
-
|
| 94 |
-
|
| 95 |
-
|
| 96 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 97 |
$response = $client->send($function);
|
| 98 |
|
| 99 |
return new PrintScience_Personalization_Model_ApiGateway_Response_Begin($response);
|
| 18 |
*/
|
| 19 |
public function beginPersonalization($templateId, $successUrl, $failUrl, $cancelUrl)
|
| 20 |
{
|
| 21 |
+
$apiUrl = Mage::getStoreConfig('catalog/personalization/api_url');
|
| 22 |
+
$apiVersion = Mage::getStoreConfig('catalog/personalization/api_version');
|
| 23 |
+
$client = new xmlrpc_client($apiUrl);
|
| 24 |
+
$function = null;
|
| 25 |
+
// check api version
|
| 26 |
+
switch($apiVersion)
|
| 27 |
+
{
|
| 28 |
+
case '1.0.0':
|
| 29 |
+
$function = new xmlrpcmsg('beginPersonalization', array(
|
| 30 |
+
php_xmlrpc_encode(Mage::getStoreConfig('catalog/personalization/api_username')),
|
| 31 |
+
php_xmlrpc_encode(Mage::getStoreConfig('catalog/personalization/api_password')),
|
| 32 |
+
php_xmlrpc_encode($templateId),
|
| 33 |
+
php_xmlrpc_encode($successUrl),
|
| 34 |
+
php_xmlrpc_encode($failUrl),
|
| 35 |
+
php_xmlrpc_encode($cancelUrl),
|
| 36 |
+
php_xmlrpc_encode('')
|
| 37 |
+
));
|
| 38 |
+
break;
|
| 39 |
+
case '2.0.0':
|
| 40 |
+
$function = new xmlrpcmsg('beginPersonalization', array(
|
| 41 |
+
php_xmlrpc_encode(Mage::getStoreConfig('catalog/personalization/api_username')),
|
| 42 |
+
php_xmlrpc_encode(Mage::getStoreConfig('catalog/personalization/api_password')),
|
| 43 |
+
php_xmlrpc_encode($templateId),
|
| 44 |
+
php_xmlrpc_encode($successUrl),
|
| 45 |
+
php_xmlrpc_encode($failUrl),
|
| 46 |
+
php_xmlrpc_encode($cancelUrl),
|
| 47 |
+
php_xmlrpc_encode(''),
|
| 48 |
+
php_xmlrpc_encode('en'),
|
| 49 |
+
php_xmlrpc_encode(''),
|
| 50 |
+
php_xmlrpc_encode('')
|
| 51 |
+
));
|
| 52 |
+
break;
|
| 53 |
+
case '4.0.0':
|
| 54 |
+
$function = new xmlrpcmsg('beginPersonalization', array(
|
| 55 |
+
php_xmlrpc_encode(Mage::getStoreConfig('catalog/personalization/api_username')),
|
| 56 |
+
php_xmlrpc_encode(Mage::getStoreConfig('catalog/personalization/api_password')),
|
| 57 |
+
php_xmlrpc_encode($templateId),
|
| 58 |
+
php_xmlrpc_encode($successUrl),
|
| 59 |
+
php_xmlrpc_encode($failUrl),
|
| 60 |
+
php_xmlrpc_encode($cancelUrl),
|
| 61 |
+
php_xmlrpc_encode('')
|
| 62 |
+
));
|
| 63 |
+
break;
|
| 64 |
+
default:
|
| 65 |
+
$function = new xmlrpcmsg('beginPersonalization', array(
|
| 66 |
+
php_xmlrpc_encode(Mage::getStoreConfig('catalog/personalization/api_username')),
|
| 67 |
+
php_xmlrpc_encode(Mage::getStoreConfig('catalog/personalization/api_password')),
|
| 68 |
+
php_xmlrpc_encode($templateId),
|
| 69 |
+
php_xmlrpc_encode($successUrl),
|
| 70 |
+
php_xmlrpc_encode($failUrl),
|
| 71 |
+
php_xmlrpc_encode($cancelUrl),
|
| 72 |
+
php_xmlrpc_encode('')
|
| 73 |
+
));
|
| 74 |
+
break;
|
| 75 |
+
}
|
| 76 |
$response = $client->send($function);
|
| 77 |
|
| 78 |
return new PrintScience_Personalization_Model_ApiGateway_Response_Begin($response);
|
| 124 |
*/
|
| 125 |
public function resumePersonalization($sessionKey, $templateId, $successUrl, $failUrl, $cancelUrl)
|
| 126 |
{
|
| 127 |
+
$apiUrl = Mage::getStoreConfig('catalog/personalization/api_url');
|
| 128 |
+
$apiVersion = Mage::getStoreConfig('catalog/personalization/api_version');
|
| 129 |
+
$client = new xmlrpc_client($apiUrl);
|
| 130 |
+
$function = null;
|
| 131 |
+
// check api version
|
| 132 |
+
switch($apiVersion)
|
| 133 |
+
{
|
| 134 |
+
case '1.0.0':
|
| 135 |
+
$function = new xmlrpcmsg('resumePersonalization', array(
|
| 136 |
+
php_xmlrpc_encode(Mage::getStoreConfig('catalog/personalization/api_username')),
|
| 137 |
+
php_xmlrpc_encode(Mage::getStoreConfig('catalog/personalization/api_password')),
|
| 138 |
+
php_xmlrpc_encode($sessionKey),
|
| 139 |
+
php_xmlrpc_encode($templateId),
|
| 140 |
+
php_xmlrpc_encode($successUrl),
|
| 141 |
+
php_xmlrpc_encode($failUrl),
|
| 142 |
+
php_xmlrpc_encode($cancelUrl),
|
| 143 |
+
php_xmlrpc_encode('')
|
| 144 |
+
));
|
| 145 |
+
break;
|
| 146 |
+
case '2.0.0':
|
| 147 |
+
$function = new xmlrpcmsg('resumePersonalization', array(
|
| 148 |
+
php_xmlrpc_encode(Mage::getStoreConfig('catalog/personalization/api_username')),
|
| 149 |
+
php_xmlrpc_encode(Mage::getStoreConfig('catalog/personalization/api_password')),
|
| 150 |
+
php_xmlrpc_encode($sessionKey),
|
| 151 |
+
php_xmlrpc_encode($templateId),
|
| 152 |
+
php_xmlrpc_encode($successUrl),
|
| 153 |
+
php_xmlrpc_encode($failUrl),
|
| 154 |
+
php_xmlrpc_encode($cancelUrl),
|
| 155 |
+
php_xmlrpc_encode(''),
|
| 156 |
+
php_xmlrpc_encode('')
|
| 157 |
+
));
|
| 158 |
+
break;
|
| 159 |
+
case '4.0.0':
|
| 160 |
+
$function = new xmlrpcmsg('resumePersonalization', array(
|
| 161 |
+
php_xmlrpc_encode(Mage::getStoreConfig('catalog/personalization/api_username')),
|
| 162 |
+
php_xmlrpc_encode(Mage::getStoreConfig('catalog/personalization/api_password')),
|
| 163 |
+
php_xmlrpc_encode($sessionKey),
|
| 164 |
+
php_xmlrpc_encode($templateId),
|
| 165 |
+
php_xmlrpc_encode($successUrl),
|
| 166 |
+
php_xmlrpc_encode($failUrl),
|
| 167 |
+
php_xmlrpc_encode($cancelUrl),
|
| 168 |
+
php_xmlrpc_encode(''),
|
| 169 |
+
php_xmlrpc_encode('')
|
| 170 |
+
));
|
| 171 |
+
break;
|
| 172 |
+
default:
|
| 173 |
+
$function = new xmlrpcmsg('resumePersonalization', array(
|
| 174 |
+
php_xmlrpc_encode(Mage::getStoreConfig('catalog/personalization/api_username')),
|
| 175 |
+
php_xmlrpc_encode(Mage::getStoreConfig('catalog/personalization/api_password')),
|
| 176 |
+
php_xmlrpc_encode($sessionKey),
|
| 177 |
+
php_xmlrpc_encode($templateId),
|
| 178 |
+
php_xmlrpc_encode($successUrl),
|
| 179 |
+
php_xmlrpc_encode($failUrl),
|
| 180 |
+
php_xmlrpc_encode($cancelUrl),
|
| 181 |
+
php_xmlrpc_encode('')
|
| 182 |
+
));
|
| 183 |
+
break;
|
| 184 |
+
}
|
| 185 |
$response = $client->send($function);
|
| 186 |
|
| 187 |
return new PrintScience_Personalization_Model_ApiGateway_Response_Begin($response);
|
app/code/local/PrintScience/Personalization/Model/ApiGateway/Response/GetPreview.php
CHANGED
|
@@ -33,13 +33,24 @@ extends PrintScience_Personalization_Model_ApiGateway_Response_Abstract
|
|
| 33 |
*/
|
| 34 |
public function getPeviewUrls()
|
| 35 |
{
|
| 36 |
-
$previewUrlMember = $this->response->value()->structMem('preview_url');
|
| 37 |
-
|
| 38 |
$previewUrls = array();
|
| 39 |
-
|
| 40 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41 |
}
|
| 42 |
-
|
| 43 |
return $previewUrls;
|
| 44 |
}
|
| 45 |
}
|
| 33 |
*/
|
| 34 |
public function getPeviewUrls()
|
| 35 |
{
|
|
|
|
|
|
|
| 36 |
$previewUrls = array();
|
| 37 |
+
$apiVersion = Mage::getStoreConfig('catalog/personalization/api_version');
|
| 38 |
+
$previewUrlMember = $this->response->value()->structMem('preview_url');
|
| 39 |
+
// check api version
|
| 40 |
+
switch($apiVersion)
|
| 41 |
+
{
|
| 42 |
+
case '4.0.0':
|
| 43 |
+
for ($i = 0; $i < $previewUrlMember->arraySize(); $i++) {
|
| 44 |
+
$temp = $previewUrlMember->arrayMem($i)->scalarval();
|
| 45 |
+
$previewUrls[] = $temp[1]->scalarval();
|
| 46 |
+
}
|
| 47 |
+
break;
|
| 48 |
+
default:
|
| 49 |
+
for ($i = 0; $i < $previewUrlMember->arraySize(); $i++) {
|
| 50 |
+
$previewUrls[] = $previewUrlMember->arrayMem($i)->scalarval();
|
| 51 |
+
}
|
| 52 |
+
break;
|
| 53 |
}
|
|
|
|
| 54 |
return $previewUrls;
|
| 55 |
}
|
| 56 |
}
|
app/code/local/PrintScience/Personalization/Model/System/Config/Source/ApiVersion.php
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php
|
| 2 |
+
/**
|
| 3 |
+
* Personalization API URL backend
|
| 4 |
+
*
|
| 5 |
+
*/
|
| 6 |
+
class PrintScience_Personalization_Model_System_Config_Source_ApiVersion
|
| 7 |
+
{
|
| 8 |
+
public function toOptionArray()
|
| 9 |
+
{
|
| 10 |
+
return array(
|
| 11 |
+
array('value'=>'1.0.0', 'label'=>Mage::helper('printscience_personalization')->__('1.0.0')),
|
| 12 |
+
array('value'=>'2.0.0', 'label'=>Mage::helper('printscience_personalization')->__('2.0.0')),
|
| 13 |
+
array('value'=>'4.0.0', 'label'=>Mage::helper('printscience_personalization')->__('4.0.0')),
|
| 14 |
+
);
|
| 15 |
+
}
|
| 16 |
+
}
|
app/code/local/PrintScience/Personalization/etc/config.xml
CHANGED
|
@@ -2,7 +2,7 @@
|
|
| 2 |
<config>
|
| 3 |
<modules>
|
| 4 |
<PrintScience_Personalization>
|
| 5 |
-
<version>1.0.
|
| 6 |
</PrintScience_Personalization>
|
| 7 |
</modules>
|
| 8 |
<frontend>
|
|
@@ -163,4 +163,11 @@
|
|
| 163 |
</printscience_personalization_read>
|
| 164 |
</resources>
|
| 165 |
</global>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 166 |
</config>
|
| 2 |
<config>
|
| 3 |
<modules>
|
| 4 |
<PrintScience_Personalization>
|
| 5 |
+
<version>1.0.11</version>
|
| 6 |
</PrintScience_Personalization>
|
| 7 |
</modules>
|
| 8 |
<frontend>
|
| 163 |
</printscience_personalization_read>
|
| 164 |
</resources>
|
| 165 |
</global>
|
| 166 |
+
<default>
|
| 167 |
+
<catalog>
|
| 168 |
+
<personalization>
|
| 169 |
+
<api_version>1.0.0</api_version>
|
| 170 |
+
</personalization>
|
| 171 |
+
</catalog>
|
| 172 |
+
</default>
|
| 173 |
</config>
|
app/code/local/PrintScience/Personalization/etc/system.xml
CHANGED
|
@@ -27,11 +27,20 @@
|
|
| 27 |
<show_in_website>0</show_in_website>
|
| 28 |
<show_in_store>0</show_in_store>
|
| 29 |
</api_password>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 30 |
<api_url transalte="label">
|
| 31 |
<label>API URL</label>
|
| 32 |
<frontend_type>text</frontend_type>
|
| 33 |
<backend_model>printscience_personalization/system_config_backend_apiUrl</backend_model>
|
| 34 |
-
<sort_order>
|
| 35 |
<show_in_default>1</show_in_default>
|
| 36 |
<show_in_website>0</show_in_website>
|
| 37 |
<show_in_store>0</show_in_store>
|
|
@@ -40,7 +49,7 @@
|
|
| 40 |
<label>API Image URL</label>
|
| 41 |
<frontend_type>text</frontend_type>
|
| 42 |
<backend_model>printscience_personalization/system_config_backend_apiUrl</backend_model>
|
| 43 |
-
<sort_order>
|
| 44 |
<show_in_default>1</show_in_default>
|
| 45 |
<show_in_website>0</show_in_website>
|
| 46 |
<show_in_store>0</show_in_store>
|
| 27 |
<show_in_website>0</show_in_website>
|
| 28 |
<show_in_store>0</show_in_store>
|
| 29 |
</api_password>
|
| 30 |
+
<api_version translate="label">
|
| 31 |
+
<label>Api Version</label>
|
| 32 |
+
<frontend_type>select</frontend_type>
|
| 33 |
+
<sort_order>3</sort_order>
|
| 34 |
+
<show_in_default>1</show_in_default>
|
| 35 |
+
<show_in_website>1</show_in_website>
|
| 36 |
+
<show_in_store>1</show_in_store>
|
| 37 |
+
<source_model>printscience_personalization/system_config_source_apiVersion</source_model>
|
| 38 |
+
</api_version>
|
| 39 |
<api_url transalte="label">
|
| 40 |
<label>API URL</label>
|
| 41 |
<frontend_type>text</frontend_type>
|
| 42 |
<backend_model>printscience_personalization/system_config_backend_apiUrl</backend_model>
|
| 43 |
+
<sort_order>4</sort_order>
|
| 44 |
<show_in_default>1</show_in_default>
|
| 45 |
<show_in_website>0</show_in_website>
|
| 46 |
<show_in_store>0</show_in_store>
|
| 49 |
<label>API Image URL</label>
|
| 50 |
<frontend_type>text</frontend_type>
|
| 51 |
<backend_model>printscience_personalization/system_config_backend_apiUrl</backend_model>
|
| 52 |
+
<sort_order>5</sort_order>
|
| 53 |
<show_in_default>1</show_in_default>
|
| 54 |
<show_in_website>0</show_in_website>
|
| 55 |
<show_in_store>0</show_in_store>
|
package.xml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Print_Science_Designer_Web_to_Print</name>
|
| 4 |
-
<version>1.0.
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license>OSL v3.0</license>
|
| 7 |
<channel>community</channel>
|
|
@@ -10,9 +10,9 @@
|
|
| 10 |
<description>Print_Science_Designer_Web_to_Print</description>
|
| 11 |
<notes>Print_Science_Designer_Web_to_Print</notes>
|
| 12 |
<authors><author><name>John Weissberg</name><user>johnwwweissberg</user><email>jw@print-science.com</email></author></authors>
|
| 13 |
-
<date>2013-
|
| 14 |
-
<time>
|
| 15 |
-
<contents><target name="magelocal"><dir name="PrintScience"><dir name="Personalization"><dir name="Block"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><dir name="View"><dir name="Items"><file name="Renderer.php" hash="e9a0dcb549311ea6f4e3992bbc9a4b5c"/></dir></dir></dir></dir></dir><dir name="Checkout"><dir name="Cart"><dir name="Item"><file name="Renderer.php" hash="df8e92bcf833f62324a47cb0af298e1c"/></dir></dir></dir></dir><dir name="Helper"><file name="Order.php" hash="ba50cbfb5f647cbca2deae91153db9b7"/><file name="Output.php" hash="850a4a708a2dd67a5f3f71ee93087740"/><file name="Quote.php" hash="d14fbe62e2a96e4aede13082c16dda30"/><file name="Session.php" hash="0236f26208780df75ca780d40edbe351"/></dir><dir name="Model"><dir name="ApiGateway"><dir name="Response"><file name="Abstract.php" hash="66667fce4c92782faf1d1a92f4c3e339"/><file name="Begin.php" hash="451d64c86ef6aa542ae7cf5949b1b627"/><file name="GetPreview.php" hash="
|
| 16 |
<compatible/>
|
| 17 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
| 18 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Print_Science_Designer_Web_to_Print</name>
|
| 4 |
+
<version>1.0.11</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license>OSL v3.0</license>
|
| 7 |
<channel>community</channel>
|
| 10 |
<description>Print_Science_Designer_Web_to_Print</description>
|
| 11 |
<notes>Print_Science_Designer_Web_to_Print</notes>
|
| 12 |
<authors><author><name>John Weissberg</name><user>johnwwweissberg</user><email>jw@print-science.com</email></author></authors>
|
| 13 |
+
<date>2013-04-11</date>
|
| 14 |
+
<time>16:44:38</time>
|
| 15 |
+
<contents><target name="magelocal"><dir name="PrintScience"><dir name="Personalization"><dir name="Block"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><dir name="View"><dir name="Items"><file name="Renderer.php" hash="e9a0dcb549311ea6f4e3992bbc9a4b5c"/></dir></dir></dir></dir></dir><dir name="Checkout"><dir name="Cart"><dir name="Item"><file name="Renderer.php" hash="df8e92bcf833f62324a47cb0af298e1c"/></dir></dir></dir></dir><dir name="Helper"><file name="Data.php" hash="c179538b05ea6c4a57f7193c1c8e225b"/><file name="Order.php" hash="ba50cbfb5f647cbca2deae91153db9b7"/><file name="Output.php" hash="850a4a708a2dd67a5f3f71ee93087740"/><file name="Quote.php" hash="d14fbe62e2a96e4aede13082c16dda30"/><file name="Session.php" hash="0236f26208780df75ca780d40edbe351"/></dir><dir name="Model"><dir name="ApiGateway"><dir name="Response"><file name="Abstract.php" hash="66667fce4c92782faf1d1a92f4c3e339"/><file name="Begin.php" hash="451d64c86ef6aa542ae7cf5949b1b627"/><file name="GetPreview.php" hash="5801403f4c511aa0a97b8273a712e407"/></dir></dir><file name="ApiGateway.php" hash="1893c8252ac1eb4f877da99d5aa81d65"/><file name="Observer.php" hash="eb7b131c876983ff28cbaee0c0022794"/><dir name="Override"><dir name="Checkout"><file name="Cart.php" hash="ccece0a4e9fffd6d4b7f1b1a8a97dbd3"/></dir><dir name="Sales"><file name="Quote.php" hash="58083e79ec32db5ea22e0fa61f3a4bd7"/></dir></dir><dir name="Resource"><dir name="Eav"><dir name="Mysql4"><file name="Setup.php" hash="0b1f152cf26c58a92efe4165dc9b3803"/></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Backend"><file name="ApiUrl.php" hash="34eb488ef178104966397f425625534d"/></dir><dir name="Source"><file name="ApiVersion.php" hash="e0248a29ebc88171b7fb51bdbabaca8b"/></dir></dir></dir></dir><dir name="controllers"><file name="IndexController.php" hash="e72c45efac84a7dbeb5a36a025dd06df"/></dir><dir name="etc"><file name="config.xml" hash="91cc7650d50ceb4992bca18ed986d72e"/><file name="system.xml" hash="664e6c7cebbf88cfb17881907bc16826"/></dir><dir name="sql"><dir name="printscience_personalization_setup"><file name="mysql4-install-1.0.3.php" hash="7895f0369177cb6dab9911d7820647b4"/><file name="mysql4-upgrade-1.0.3-1.0.4.php" hash="d952675034fdd05650ef978dccbc05fd"/><file name="mysql4-upgrade-1.0.8-1.0.9.php" hash="2e7cd11df78d3742d95f5264a2f34f07"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="PrintScience_Personalization.xml" hash="5f5c39c5b01e828137125d057d04a655"/></dir></target><target name="magelib"><dir name="xmlrpc"><file name="xmlrpc.inc" hash="55ecb2a9f7fc20d53a7b4da9d885e26b"/></dir></target><target name="magelocale"><dir><dir name="en_US"><file name="PrintScience_Personalization.csv" hash="fc8365124f21bddca4dfac3d3dbf5b7f"/></dir></dir></target><target name="mage"><dir name="js"><dir name="printscience_personalization"><file name="gallery.css" hash="eccacd49a35d68ef25bc1bf8e292fe98"/><file name="gallery.js" hash="d1ce93b3cf8ef950fef1097636f3205e"/><dir name="jquery"><dir name="fancybox"><file name="blank.gif" hash="325472601571f31e1bf00674c368d335"/><file name="fancy_close.png" hash="6e2879a324a76e9972ebc98201aae1d8"/><file name="fancy_loading.png" hash="b1d54c240cf06e7f41e372d56919b738"/><file name="fancy_nav_left.png" hash="3f3e406102152cd8236383568a40ba35"/><file name="fancy_nav_right.png" hash="216e4bde5bddeeaa60dc3d692890a68e"/><file name="fancy_shadow_e.png" hash="fd4f491080d29fade5080877f1ba4c8b"/><file name="fancy_shadow_n.png" hash="18cde16379b2ceadef714d9b346d09ec"/><file name="fancy_shadow_ne.png" hash="63adf788acf193d4e4f3642d7d793125"/><file name="fancy_shadow_nw.png" hash="c820c878aedb7a7f9ebd7135a58e7c65"/><file name="fancy_shadow_s.png" hash="9b9e5c888028aaef40fe5b6a363f1e29"/><file name="fancy_shadow_se.png" hash="a8afd5a008884380ee712d177105268f"/><file name="fancy_shadow_sw.png" hash="f81cc0fee5581d76ad3cebe47e7e791b"/><file name="fancy_shadow_w.png" hash="59b0e63eb059e58d932cfd53da4d87e6"/><file name="fancy_title_left.png" hash="1582ac2d3bef6a6445bf02ceca2741cd"/><file name="fancy_title_main.png" hash="38dad6c1ed4bdc81c0bec721b2deb8c2"/><file name="fancy_title_over.png" hash="b886fd165d4b7ac77d41fb52d87ffc60"/><file name="fancy_title_right.png" hash="6cbe0c935511e7f9a2555ccb6a7324c4"/><file name="fancybox-x.png" hash="168696d8a694214090ef90e029cdf393"/><file name="fancybox-y.png" hash="36a58859beb9a6b19322a37466b9f78e"/><file name="fancybox.png" hash="11e57e492ee0311540967cc7a1e6e3e2"/><file name="jquery.easing-1.3.pack.js" hash="def257dbb0ab805c4996fd8abb1a6b49"/><file name="jquery.fancybox-1.3.4.css" hash="4638ce99ef00cf62bfb22d230f9924b8"/><file name="jquery.fancybox-1.3.4.pack.js" hash="8bc36a08c46719377528d962966ce37c"/><file name="jquery.mousewheel-3.0.4.pack.js" hash="3b0a821567b463e70bcc1e90ed2bc9b6"/></dir><file name="jquery-1.4.2.min.js" hash="b80a2154ce061c8242031d9a4892c5a6"/><dir name="jquery.cycle"><file name="jquery.cycle.lite.min.js" hash="0c4a7571c05a6ada90b93e826e7f9f6e"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="printscience_personalization.xml" hash="02bbc420d579eceee5b83b3fb41a73af"/></dir><dir name="template"><dir name="printscience_personalization"><dir name="sales"><dir name="order"><dir name="view"><dir name="items"><dir name="renderer"><file name="default.phtml" hash="5b6bcdd9bd94afda867429707dd786d3"/></dir></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="printscience_personalization.xml" hash="8aaf99ddb5b8f918413fc861ff7c6036"/></dir><dir name="template"><dir name="printscience_personalization"><dir name="catalog"><dir name="product"><file name="list.phtml" hash="ed9facdc48754e923c89b206003abe8a"/><dir name="view"><file name="addtocart.phtml" hash="c46ece2a25fa12658938f3f2be6a6790"/><file name="media.phtml" hash="c1350af91c896b3a621a4ddc9bb9e219"/></dir></dir></dir><dir name="checkout"><dir name="cart"><dir name="item"><file name="default.phtml" hash="100d84ebfa362f73af66a6e12fa3cb83"/></dir></dir></dir></dir></dir></dir></dir></dir></target></contents>
|
| 16 |
<compatible/>
|
| 17 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
| 18 |
</package>
|
