Version Notes
-optimized synchronization of all products
-fixed critical error when changed store view
-fixed compilation error
Download this release
Release Info
Developer | Développeurs EnvoiMoinsCher.com |
Extension | Orbitvu_Sun |
Version | 1.0.9 |
Comparing to | |
See all releases |
Code changes from version 1.0.8 to 1.0.9
- app/code/community/Orbitvu/Sun/Block/Adminhtml/Catalog/Product/Grid.php +3 -3
- app/code/community/Orbitvu/Sun/Helper/Data.php +4 -0
- app/code/community/Orbitvu/Sun/Model/Observer.php +7 -2
- app/code/community/Orbitvu/Sun/controllers/OrbitvuAdmin.php +1 -1
- app/code/community/Orbitvu/Sun/controllers/OrbitvuConnect.php +2 -0
- app/code/community/Orbitvu/Sun/controllers/OrbitvuDatabaseInterface.php +143 -3
- app/code/community/Orbitvu/Sun/etc/adminhtml.xml +1 -1
- app/code/community/Orbitvu/Sun/etc/config.xml +6 -1
- app/code/community/Orbitvu/Sun/sql/sun_setup/mysql4-install-1.0.9.php +24 -0
- app/code/community/Orbitvu/Sun/sql/sun_setup/mysql4-upgrade-1.0.8-1.0.9.php +17 -0
- package.xml +7 -5
app/code/community/Orbitvu/Sun/Block/Adminhtml/Catalog/Product/Grid.php
CHANGED
@@ -17,16 +17,16 @@ class Orbitvu_Sun_Block_Adminhtml_Catalog_Product_Grid extends Mage_Adminhtml_Bl
|
|
17 |
*/
|
18 |
public function setCollection($collection) {
|
19 |
//------------------------------------------------------------------------------------------------------------------
|
20 |
-
|
21 |
//------------------------------------------------------------------------------------------------------------------
|
22 |
-
if ($store->getId() && !isset($this->_joinAttributes['orbitvu_sun'])) {
|
23 |
$collection->joinAttribute(
|
24 |
'orbitvu_sun', 'catalog_product/orbitvu_sun', 'entity_id', null, 'left', $store->getId()
|
25 |
);
|
26 |
}
|
27 |
else {
|
28 |
$collection->addAttributeToSelect('orbitvu_sun');
|
29 |
-
}
|
30 |
//------------------------------------------------------------------------------------------------------------------
|
31 |
parent::setCollection($collection);
|
32 |
//------------------------------------------------------------------------------------------------------------------
|
17 |
*/
|
18 |
public function setCollection($collection) {
|
19 |
//------------------------------------------------------------------------------------------------------------------
|
20 |
+
//$store = $this->_getStore();
|
21 |
//------------------------------------------------------------------------------------------------------------------
|
22 |
+
/*if ($store->getId() && !isset($this->_joinAttributes['orbitvu_sun'])) {
|
23 |
$collection->joinAttribute(
|
24 |
'orbitvu_sun', 'catalog_product/orbitvu_sun', 'entity_id', null, 'left', $store->getId()
|
25 |
);
|
26 |
}
|
27 |
else {
|
28 |
$collection->addAttributeToSelect('orbitvu_sun');
|
29 |
+
}*/
|
30 |
//------------------------------------------------------------------------------------------------------------------
|
31 |
parent::setCollection($collection);
|
32 |
//------------------------------------------------------------------------------------------------------------------
|
app/code/community/Orbitvu/Sun/Helper/Data.php
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
class Orbitvu_Sun_Helper_Data extends Mage_Core_Helper_Abstract
|
3 |
+
{
|
4 |
+
}
|
app/code/community/Orbitvu/Sun/Model/Observer.php
CHANGED
@@ -14,8 +14,13 @@ class Orbitvu_Sun_Model_Observer {
|
|
14 |
public $_Orbitvu;
|
15 |
//-------------------------------------------------------------------------------------------------------
|
16 |
public function ExtendOrbitvu($return = true) {
|
17 |
-
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
19 |
|
20 |
$this->_Orbitvu = new OrbitvuAdmin(false);
|
21 |
|
14 |
public $_Orbitvu;
|
15 |
//-------------------------------------------------------------------------------------------------------
|
16 |
public function ExtendOrbitvu($return = true) {
|
17 |
+
$no = strpos(dirname((__FILE__)), "Orbitvu".DIRECTORY_SEPARATOR."Sun");
|
18 |
+
$dir = substr(dirname(__FILE__), 0, $no ? $no : strlen(dirname(__FILE__)));
|
19 |
+
$helpers = $dir.DIRECTORY_SEPARATOR."Orbitvu".DIRECTORY_SEPARATOR."Sun".DIRECTORY_SEPARATOR."controllers".DIRECTORY_SEPARATOR."OrbitvuAdmin.php";
|
20 |
+
include_once($helpers);
|
21 |
+
|
22 |
+
/*$helpers = __DIR__.'/../controllers/OrbitvuAdmin.php';
|
23 |
+
include_once($helpers);*/
|
24 |
|
25 |
$this->_Orbitvu = new OrbitvuAdmin(false);
|
26 |
|
app/code/community/Orbitvu/Sun/controllers/OrbitvuAdmin.php
CHANGED
@@ -932,7 +932,7 @@ final class OrbitvuAdmin {
|
|
932 |
*/
|
933 |
public function SynchronizeAllProducts() {
|
934 |
//-------------------------------------------------------------------------------------------------------
|
935 |
-
return $this->driver->SynchronizeAllProducts(
|
936 |
//-------------------------------------------------------------------------------------------------------
|
937 |
}
|
938 |
|
932 |
*/
|
933 |
public function SynchronizeAllProducts() {
|
934 |
//-------------------------------------------------------------------------------------------------------
|
935 |
+
return $this->driver->SynchronizeAllProducts();
|
936 |
//-------------------------------------------------------------------------------------------------------
|
937 |
}
|
938 |
|
app/code/community/Orbitvu/Sun/controllers/OrbitvuConnect.php
CHANGED
@@ -287,6 +287,8 @@ final class Orbitvu {
|
|
287 |
curl_setopt($c, CURLOPT_URL, $url);
|
288 |
curl_setopt($c, CURLOPT_HTTPHEADER, $header);
|
289 |
curl_setopt($c, CURLOPT_SSL_VERIFYPEER, false);
|
|
|
|
|
290 |
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
|
291 |
if ($method_post) {
|
292 |
curl_setopt($c, CURLOPT_POST, count($parameters_array));
|
287 |
curl_setopt($c, CURLOPT_URL, $url);
|
288 |
curl_setopt($c, CURLOPT_HTTPHEADER, $header);
|
289 |
curl_setopt($c, CURLOPT_SSL_VERIFYPEER, false);
|
290 |
+
curl_setopt($c, CURLOPT_CONNECTTIMEOUT,2);
|
291 |
+
curl_setopt($c, CURLOPT_TIMEOUT,5);
|
292 |
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
|
293 |
if ($method_post) {
|
294 |
curl_setopt($c, CURLOPT_POST, count($parameters_array));
|
app/code/community/Orbitvu/Sun/controllers/OrbitvuDatabaseInterface.php
CHANGED
@@ -108,7 +108,7 @@ final class OrbitvuDatabaseInterface {
|
|
108 |
*/
|
109 |
public function SynchronizeAllProducts() {
|
110 |
//----------------------------------------------------------
|
111 |
-
return $this->
|
112 |
//----------------------------------------------------------
|
113 |
}
|
114 |
|
@@ -899,7 +899,147 @@ final class OrbitvuDatabaseInterface {
|
|
899 |
}
|
900 |
//-------------------------------------------------------------------------------------------------------
|
901 |
}
|
902 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
903 |
/**
|
904 |
* Synchronize presentations
|
905 |
* @param array $products_array Products array
|
@@ -1546,7 +1686,7 @@ V3lKY0wzWmhjbHd2ZDNkM1hDOWtaWFl1YldGblpXNTBieTV2Y21KcGRIWjFMbU52YlZ3dmNIVmliR2xq
|
|
1546 |
else {
|
1547 |
//-------------------------------------------------------------------------------------------------------
|
1548 |
$results = array();
|
1549 |
-
$response_results =
|
1550 |
$j = 0;
|
1551 |
//-------------------------------------------------------------------------------------------------------
|
1552 |
do {
|
108 |
*/
|
109 |
public function SynchronizeAllProducts() {
|
110 |
//----------------------------------------------------------
|
111 |
+
return $this->SynchronizeAllPresentations($this->database->SynchronizeAllProducts());
|
112 |
//----------------------------------------------------------
|
113 |
}
|
114 |
|
899 |
}
|
900 |
//-------------------------------------------------------------------------------------------------------
|
901 |
}
|
902 |
+
|
903 |
+
public function SynchronizeAllPresentations($products_array) {
|
904 |
+
$products = array();
|
905 |
+
$presentations_list = $this->GetPresentationsList();
|
906 |
+
|
907 |
+
for($i = 0; $i < count($products_array); $i++) {
|
908 |
+
$current_product = $products_array[$i];
|
909 |
+
|
910 |
+
|
911 |
+
//product has to posses name and id at least
|
912 |
+
if (empty($current_product['product_id']) || empty($current_product['product_name'])) {
|
913 |
+
//-------------------------------------------------------------------------------------------------------
|
914 |
+
continue; //
|
915 |
+
//-------------------------------------------------------------------------------------------------------
|
916 |
+
}
|
917 |
+
|
918 |
+
|
919 |
+
//check if product is already linked
|
920 |
+
if ($try = $this->GetProductPresentation($current_product['product_id'])) {
|
921 |
+
$comment = 'auto';
|
922 |
+
|
923 |
+
$this->Log($current_product['product_id'], '_presentations', 'skip', $comment);
|
924 |
+
//-------------------------------------------------------------------------------------------------------
|
925 |
+
continue;
|
926 |
+
//-------------------------------------------------------------------------------------------------------
|
927 |
+
}
|
928 |
+
$products[] = $current_product;
|
929 |
+
}
|
930 |
+
|
931 |
+
|
932 |
+
if ($presentations_list->count) {
|
933 |
+
for($i = 0; $i < $presentations_list->count; $i++) {
|
934 |
+
|
935 |
+
$current_presentation = $presentations_list->results[$i];
|
936 |
+
for($j = 0; $j < count($products); $j++) {
|
937 |
+
|
938 |
+
//ommit products which have been linked to current_presentation id
|
939 |
+
//we dont set the ommit flag becasue product may match to presentation with other id
|
940 |
+
if ($this->IsPresentationUnlinked($products[$j]['product_id'], $current_presentation->id)) {
|
941 |
+
continue;
|
942 |
+
}
|
943 |
+
|
944 |
+
if (isset($products[$j]['ommit']) && $products[$j]['ommit'] = true) {
|
945 |
+
continue;
|
946 |
+
}
|
947 |
+
|
948 |
+
$synch = false;
|
949 |
+
if (isset($products[$j]['product_sku']) && $products[$j]['product_sku'] == $current_presentation->sku) {
|
950 |
+
$products[$j]['ommit'] = true;
|
951 |
+
$synch = true;
|
952 |
+
|
953 |
+
} else if ($products[$j]['product_name'] && strcasecmp($products[$j]['product_name'], $current_presentation->name) == 0) {
|
954 |
+
$products[$j]['ommit'] = true;
|
955 |
+
$synch = true;
|
956 |
+
}
|
957 |
+
|
958 |
+
if ($synch) {
|
959 |
+
$comment = ' auto - "'.$products[$j]['product_sku'].'"';
|
960 |
+
|
961 |
+
$this->SetProductPresentation($products[$j]['product_id'], $current_presentation->id, $current_presentation->name, $comment);
|
962 |
+
|
963 |
+
$p_items = array();
|
964 |
+
//-------------------------------------------------------------------------------------------------------
|
965 |
+
$sync_order = array(
|
966 |
+
'sync_2d' => true,
|
967 |
+
'sync_360' => true,
|
968 |
+
'sync_orbittour' => true
|
969 |
+
);
|
970 |
+
//-------------------------------------------------------------------------------------------------------
|
971 |
+
foreach ($sync_order as $key => $value) {
|
972 |
+
$sync_order[$key] = $this->Config->$key;
|
973 |
+
}
|
974 |
+
|
975 |
+
$results = $current_presentation;
|
976 |
+
$uid = $results->uid;
|
977 |
+
//-------------------------------------------------------------------------------------------------------
|
978 |
+
/*
|
979 |
+
* Get OrbitTour
|
980 |
+
*/
|
981 |
+
//-------------------------------------------------------------------------------------------------------
|
982 |
+
if ($results->has_orbittour == '1') {
|
983 |
+
$p_items[] = array(
|
984 |
+
'orbitvu_id' => ($results->orbittour_set[0]->id),
|
985 |
+
'name' => 'OrbitTour',
|
986 |
+
'type' => 0,
|
987 |
+
'thumbnail' => $results->thumbnail_url,
|
988 |
+
'path' => $results->orbittour_set[0]->script_url,
|
989 |
+
'config' => json_encode(array('uid' => $uid)),
|
990 |
+
'status' => ($sync_order['sync_orbittour'] == 'true' ? 'active' : 'inactive')
|
991 |
+
);
|
992 |
+
}
|
993 |
+
//-------------------------------------------------------------------------------------------------------
|
994 |
+
|
995 |
+
/*
|
996 |
+
* Get other items
|
997 |
+
*/
|
998 |
+
//-------------------------------------------------------------------------------------------------------
|
999 |
+
$results = $results->presentationcontent_set;
|
1000 |
+
for ($k = 0, $n = count($results); $k < $n; $k++) {
|
1001 |
+
$cur = $results[$k];
|
1002 |
+
//-------------------------------------------------------------------------------------------------------
|
1003 |
+
if (($sync_order['sync_360'] == 'true' && $cur->type == '1') || ($sync_order['sync_2d'] == 'true' && $cur->type == '3')) {
|
1004 |
+
$status = 'active';
|
1005 |
+
}
|
1006 |
+
else {
|
1007 |
+
$status = 'inactive';
|
1008 |
+
}
|
1009 |
+
//-------------------------------------------------------------------------------------------------------
|
1010 |
+
$p_items[] = array(
|
1011 |
+
'orbitvu_id' => ($cur->id),
|
1012 |
+
'name' => $cur->name,
|
1013 |
+
'type' => $cur->type,
|
1014 |
+
'thumbnail' => $cur->thumbnail_url,
|
1015 |
+
'path' => (!empty($cur->script_url) ? $cur->script_url : $cur->view_url),
|
1016 |
+
'config' => json_encode(array('uid' => $uid)),
|
1017 |
+
'status' => $status
|
1018 |
+
);
|
1019 |
+
}
|
1020 |
+
|
1021 |
+
if (count($p_items) >= 1) {
|
1022 |
+
//-------------------------------------------------------------------------------------------------------
|
1023 |
+
$this->SetProductPresentationItems($products[$j]['product_id'], $current_presentation->id, $current_presentation->name, $p_items, 'auto');
|
1024 |
+
//-------------------------------------------------------------------------------------------------------
|
1025 |
+
}
|
1026 |
+
|
1027 |
+
}
|
1028 |
+
}
|
1029 |
+
|
1030 |
+
}
|
1031 |
+
}
|
1032 |
+
|
1033 |
+
//-------------------------------------------------------------------------------------------------------
|
1034 |
+
$this->SetConfiguration('last_updated', date('Y-m-d H:i:s'));
|
1035 |
+
//-------------------------------------------------------------------------------------------------------
|
1036 |
+
|
1037 |
+
return $products_array;
|
1038 |
+
//-------------------------------------------------------------------------------------------------------
|
1039 |
+
|
1040 |
+
}
|
1041 |
+
|
1042 |
+
|
1043 |
/**
|
1044 |
* Synchronize presentations
|
1045 |
* @param array $products_array Products array
|
1686 |
else {
|
1687 |
//-------------------------------------------------------------------------------------------------------
|
1688 |
$results = array();
|
1689 |
+
$response_results = new stdClass();
|
1690 |
$j = 0;
|
1691 |
//-------------------------------------------------------------------------------------------------------
|
1692 |
do {
|
app/code/community/Orbitvu/Sun/etc/adminhtml.xml
CHANGED
@@ -11,7 +11,7 @@
|
|
11 |
<children>
|
12 |
<config>
|
13 |
<children>
|
14 |
-
<orbitvu translate="title" module="
|
15 |
<title>Orbitvu SUN Synchronization</title>
|
16 |
<sort_order>100</sort_order>
|
17 |
</orbitvu>
|
11 |
<children>
|
12 |
<config>
|
13 |
<children>
|
14 |
+
<orbitvu translate="title" module="sun">
|
15 |
<title>Orbitvu SUN Synchronization</title>
|
16 |
<sort_order>100</sort_order>
|
17 |
</orbitvu>
|
app/code/community/Orbitvu/Sun/etc/config.xml
CHANGED
@@ -9,7 +9,7 @@
|
|
9 |
<config>
|
10 |
<modules>
|
11 |
<Orbitvu_Sun>
|
12 |
-
<version>1.0.
|
13 |
</Orbitvu_Sun>
|
14 |
</modules>
|
15 |
<global>
|
@@ -19,6 +19,11 @@
|
|
19 |
<resourceModel>sun_resource</resourceModel>
|
20 |
</sun>
|
21 |
</models>
|
|
|
|
|
|
|
|
|
|
|
22 |
<resources>
|
23 |
<sun_setup>
|
24 |
<setup>
|
9 |
<config>
|
10 |
<modules>
|
11 |
<Orbitvu_Sun>
|
12 |
+
<version>1.0.9</version>
|
13 |
</Orbitvu_Sun>
|
14 |
</modules>
|
15 |
<global>
|
19 |
<resourceModel>sun_resource</resourceModel>
|
20 |
</sun>
|
21 |
</models>
|
22 |
+
<helpers>
|
23 |
+
<sun>
|
24 |
+
<class>Orbitvu_Sun_Helper</class>
|
25 |
+
</sun>
|
26 |
+
</helpers>
|
27 |
<resources>
|
28 |
<sun_setup>
|
29 |
<setup>
|
app/code/community/Orbitvu/Sun/sql/sun_setup/mysql4-install-1.0.9.php
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
<?php
|
3 |
+
/**
|
4 |
+
* Orbitvu PHP eCommerce Orbitvu DB drivers
|
5 |
+
* @Copyright: Orbitvu Sp. z o.o. is the owner of full rights to this code
|
6 |
+
*
|
7 |
+
* @For: Magento
|
8 |
+
*/
|
9 |
+
|
10 |
+
/*
|
11 |
+
* Start installation
|
12 |
+
*/
|
13 |
+
|
14 |
+
$installer = $this;
|
15 |
+
$installer->startSetup();
|
16 |
+
|
17 |
+
$inc = Mage::getBaseDir('app').'/code/community/Orbitvu/Sun/controllers/OrbitvuAdmin.php';
|
18 |
+
include_once($inc);
|
19 |
+
|
20 |
+
$_Orbitvu = new OrbitvuAdmin(false);
|
21 |
+
$_Orbitvu->Install();
|
22 |
+
|
23 |
+
$installer->endSetup();
|
24 |
+
?>
|
app/code/community/Orbitvu/Sun/sql/sun_setup/mysql4-upgrade-1.0.8-1.0.9.php
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Orbitvu PHP eCommerce Orbitvu DB drivers
|
4 |
+
* @Copyright: Orbitvu Sp. z o.o. is the owner of full rights to this code
|
5 |
+
*
|
6 |
+
* @For: Magento
|
7 |
+
*/
|
8 |
+
|
9 |
+
/*
|
10 |
+
* Start installation
|
11 |
+
*/
|
12 |
+
|
13 |
+
$installer = $this;
|
14 |
+
$installer->startSetup();
|
15 |
+
|
16 |
+
$installer->endSetup();
|
17 |
+
?>
|
package.xml
CHANGED
@@ -1,18 +1,20 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Orbitvu_Sun</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
<license>Commercial</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Automate and improve your customer's expierience with dynamic zoom, 360°/3D spins, product tours using ORBITVU imaging solution.</summary>
|
10 |
<description>Orbitvu SUN Product Teleporting extension will improve your store product experience with interactive product tours, 360°/3D image spins and dynamic zoom on desktop and mobile. It will automate and facilitate your imaging workflow as never before. This extension is provided by ORBITVU – the global leader for automated imaging solutions.</description>
|
11 |
-
<notes>-
|
|
|
|
|
12 |
<authors><author><name>Orbitvu</name><user>dev</user><email>dev@orbitvu.com</email></author></authors>
|
13 |
-
<date>2015-07
|
14 |
-
<time>
|
15 |
-
<contents><target name="magecommunity"><dir name="Orbitvu"><dir name="Sun"><dir><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><file name="Grid.php" hash="
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.0.0</min><max>6.0.0</max></php></required></dependencies>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Orbitvu_Sun</name>
|
4 |
+
<version>1.0.9</version>
|
5 |
<stability>stable</stability>
|
6 |
<license>Commercial</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Automate and improve your customer's expierience with dynamic zoom, 360°/3D spins, product tours using ORBITVU imaging solution.</summary>
|
10 |
<description>Orbitvu SUN Product Teleporting extension will improve your store product experience with interactive product tours, 360°/3D image spins and dynamic zoom on desktop and mobile. It will automate and facilitate your imaging workflow as never before. This extension is provided by ORBITVU – the global leader for automated imaging solutions.</description>
|
11 |
+
<notes>-optimized synchronization of all products
|
12 |
+
-fixed critical error when changed store view
|
13 |
+
-fixed compilation error</notes>
|
14 |
<authors><author><name>Orbitvu</name><user>dev</user><email>dev@orbitvu.com</email></author></authors>
|
15 |
+
<date>2015-09-07</date>
|
16 |
+
<time>08:37:03</time>
|
17 |
+
<contents><target name="magecommunity"><dir name="Orbitvu"><dir name="Sun"><dir><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><file name="Grid.php" hash="7400726bd8c37d56465cf19557c44b60"/><file name="Gridrenderer.php" hash="5faf1727cec7245a8da6d60e5d7d8e0f"/></dir></dir><dir name="Tabs"><file name="Tabid.php" hash="fcbed1fa070be0ca4838eb52a16d07ca"/></dir><file name="Tabs.php" hash="71403fb00d7ac0b46ea7fdce66ad55af"/></dir><file name="Delay.php" hash="035d8fca636cce61d33f08200725a5f1"/><file name="Html5.php" hash="208cecc71503046beefa9c02579a8263"/><file name="KeyComment.php" hash="a55dd2bfd936cbf687ed62c9bb163a26"/><file name="Orbittour.php" hash="727eccc98132ca01bd6e83ea8c7b6588"/><dir name="Product"><dir name="View"><file name="Media.php" hash="5f5b110f4b5330e9fd3bd6723eb49d92"/></dir></dir><file name="Scroll.php" hash="6c1413ee3054f871fc5ea989361dad13"/><file name="Syncsku.php" hash="495ac1a5f3a3d8409b1a66f2ca62c40b"/><file name="Teaser.php" hash="8e4070b43b663badab737921742821d7"/></dir><dir name="Helper"><file name="Data.php" hash="2f37cfd7929d5c930af1a1023602bb0d"/></dir><dir name="Model"><file name="Observer.php" hash="1e2693537a0671f5ea9db833076e3742"/><dir name="Resource"><file name="Setup.php" hash="f34f2bf697d3b554f2f90453a9f9203c"/><file name="Sun.php" hash="9fdb47d4318346d2f506e246f37ed0cc"/></dir></dir><dir name="controllers"><file name="OrbitvuAdmin.php" hash="c7214e2354e0e63e77a8c6fbf45c910c"/><file name="OrbitvuConnect.php" hash="aa38663291361331bc89277f6eced347"/><file name="OrbitvuDatabaseDriver.php" hash="407d3bdd621bc69b97cbc44f75331ca4"/><file name="OrbitvuDatabaseInterface.php" hash="322d8c9ccedec3ea3dc0fd504d285873"/><file name="OrbitvuDebugger.php" hash="2a1dd59fa2512a1ce877c5b9b1f8819d"/><file name="OrbitvuTests.php" hash="cdeeeaba1fd5b70ecfaea03e8718cd66"/></dir><dir name="etc"><file name="adminhtml.xml" hash="1e4bf9feb4a3fda1d037eac942357cfc"/><file name="config.xml" hash="9439c42fd1744a2f00076c865632a29e"/><file name="local.xml" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="system.xml" hash="a1955dd0392f17ad7fc8f57f699e183d"/><file name="translations.xml" hash="f27262b561cacd1a2fb1a1e56e0e8946"/></dir><dir name="sql"><dir name="sun_setup"><file name="mysql4-install-1.0.0.php" hash="36faff7b2a28f322aee73d2180632fdd"/><file name="mysql4-install-1.0.1.php" hash="36faff7b2a28f322aee73d2180632fdd"/><file name="mysql4-install-1.0.2.php" hash="36faff7b2a28f322aee73d2180632fdd"/><file name="mysql4-install-1.0.3.php" hash="36faff7b2a28f322aee73d2180632fdd"/><file name="mysql4-install-1.0.4.php" hash="36faff7b2a28f322aee73d2180632fdd"/><file name="mysql4-install-1.0.5.php" hash="36faff7b2a28f322aee73d2180632fdd"/><file name="mysql4-install-1.0.6.php" hash="36faff7b2a28f322aee73d2180632fdd"/><file name="mysql4-install-1.0.7.php" hash="36faff7b2a28f322aee73d2180632fdd"/><file name="mysql4-install-1.0.8.php" hash="9373e4eeaedb93cdad12a07964d88200"/><file name="mysql4-install-1.0.9.php" hash="9373e4eeaedb93cdad12a07964d88200"/><file name="mysql4-upgrade-1.0.0-1.0.1.php" hash="c06d3cbe9dc35d61e7bc6fdd202c68e7"/><file name="mysql4-upgrade-1.0.1-1.0.2.php" hash="c06d3cbe9dc35d61e7bc6fdd202c68e7"/><file name="mysql4-upgrade-1.0.2-1.0.3.php" hash="c06d3cbe9dc35d61e7bc6fdd202c68e7"/><file name="mysql4-upgrade-1.0.3-1.0.4.php" hash="c06d3cbe9dc35d61e7bc6fdd202c68e7"/><file name="mysql4-upgrade-1.0.4-1.0.5.php" hash="c06d3cbe9dc35d61e7bc6fdd202c68e7"/><file name="mysql4-upgrade-1.0.5-1.0.6.php" hash="a2204f7a4d7fcf05e309614d04318084"/><file name="mysql4-upgrade-1.0.6-1.0.7.php" hash="8a1a419119da4fb35e18df5337de1c20"/><file name="mysql4-upgrade-1.0.7-1.0.8.php" hash="8a1a419119da4fb35e18df5337de1c20"/><file name="mysql4-upgrade-1.0.8-1.0.9.php" hash="8a1a419119da4fb35e18df5337de1c20"/></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="sun"><file name="orbitvu.phtml" hash="5e8dc45a3a64c1b34c3769f9d6d28d4f"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="sun.xml" hash="ea7cdb4f7d88f32f1872c3f975be5345"/></dir><dir name="template"><dir name="orbitvu"><dir name="product"><dir name="view"><file name="media.phtml" hash="1fe07e70d5c5ce7fd49b3a3f3655cb27"/></dir></dir></dir></dir></dir></dir></dir></target><target name="magemedia"><dir name="orbitvu"><file name="black.png" hash="64dcb45b20e5e2e0cc07c62a843f8f68"/><file name="blue.png" hash="fa8b00e52ec0bf7cb9937b1d5789740c"/><file name="loader.gif" hash="875eec6b429c57e0eff9ba7c182072cd"/><file name="logo.png" hash="622ada057aadbe23af717431e85ef94f"/><file name="orbit.png" hash="c390d8598792d9cc86b19e9afef0ea4a"/><file name="placeholder.png" hash="43b6e81dc733e7d8fb279e54b5f39b3f"/><dir><dir name="thumbnails"><file name="index" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir></dir><file name="white.png" hash="ff7713f7b45a4b7a4b5d8304eb3c655c"/></dir></target><target name="mage"><dir name="."><file name="crossdomain.xml" hash="3d73360d10233f48441db7ed045c3952"/><file name="ORBITVU-SUN-PRODUCT-TELEPORTING-EN.pdf" hash="069f8c15618e9ffe28dfc1e1efb6adf8"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Orbitvu_Sun.csv" hash="a60459310ed2b1e93062eae927b71979"/></dir></target><target name="mageetc"><dir name="modules"><file name="Orbitvu_Sun.xml" hash="04b339680876cb29b6c59758cfed3b8a"/></dir></target></contents>
|
18 |
<compatible/>
|
19 |
<dependencies><required><php><min>5.0.0</min><max>6.0.0</max></php></required></dependencies>
|
20 |
</package>
|