Orbitvu_Sun - Version 1.0.7

Version Notes

-fixed zoom on hover z-index

Download this release

Release Info

Developer Développeurs EnvoiMoinsCher.com
Extension Orbitvu_Sun
Version 1.0.7
Comparing to
See all releases


Code changes from version 1.0.6 to 1.0.7

app/code/community/Orbitvu/Sun/etc/config.xml CHANGED
@@ -9,7 +9,7 @@
9
  <config>
10
  <modules>
11
  <Orbitvu_Sun>
12
- <version>1.0.6</version>
13
  </Orbitvu_Sun>
14
  </modules>
15
  <global>
9
  <config>
10
  <modules>
11
  <Orbitvu_Sun>
12
+ <version>1.0.7</version>
13
  </Orbitvu_Sun>
14
  </modules>
15
  <global>
app/code/community/Orbitvu/Sun/sql/sun_setup/mysql4-install-1.0.7.php ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ $inc = Mage::getBaseDir('app').'/code/community/Orbitvu/Sun/controllers/OrbitvuAdmin.php';
17
+ include_once($inc);
18
+
19
+ $_Orbitvu = new OrbitvuAdmin(false);
20
+ $_Orbitvu->Install();
21
+
22
+ $installer->endSetup();
23
+ ?>
app/code/community/Orbitvu/Sun/sql/sun_setup/mysql4-upgrade-1.0.6-1.0.7.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
+ ?>
app/design/adminhtml/default/default/template/sun/orbitvu.phtml CHANGED
@@ -904,21 +904,23 @@ if (!$found_match) {
904
  var elems = document.getElementsByClassName('orbitvu-visibility'),
905
  button = document.getElementById('orbitvu-button-enable-items'),
906
  img = document.getElementById('enable_all_items_loader'),
907
- ids = [];
 
908
 
909
  button.style.display = 'none';
910
  img.style.display = 'inline-block';
911
  for (var i = 0, n = elems.length; i < n; i++) {
912
  if (elems[i].className.replace(' disabled', '') !== elems[i].className) {
913
  ids.push(parseInt(elems[i].id.replace('orbitvu-visibility-trigger-', '')));
 
914
  }
915
  }
916
  if (ids.length) {
917
  orbitvu_ajax('<?=$this->getUrl('*/catalog_product/edit/')?>id/<?=$product_id?>/back/edit/sun/update_statuses/sun_items_statuses/' + ids.join(',') + '/sun_status/active', function(data){
918
  data = JSON.parse(data);
919
  if (data.status) {
920
- for (var i = 0, n = elems.length; i < n; i++) {
921
- elems[i].className = elems[i].className.replace(' disabled', '');
922
  document.getElementById('orbitvu-gallery-item-' + ids[i]).className = document.getElementById('orbitvu-gallery-item-' + ids[i]).className.replace(' hidden', '');
923
  }
924
  button.style.display = 'inline-block';
@@ -935,21 +937,23 @@ if (!$found_match) {
935
  var elems = document.getElementsByClassName('orbitvu-visibility'),
936
  button = document.getElementById('orbitvu-button-disable-items'),
937
  img = document.getElementById('disable_all_items_loader'),
938
- ids = [];
 
939
 
940
  button.style.display = 'none';
941
  img.style.display = 'inline-block';
942
  for (var i = 0, n = elems.length; i < n; i++) {
943
  if (elems[i].className.replace(' disabled', '') === elems[i].className) {
944
  ids.push(parseInt(elems[i].id.replace('orbitvu-visibility-trigger-', '')));
 
945
  }
946
  }
947
  if (ids.length) {
948
  orbitvu_ajax('<?=$this->getUrl('*/catalog_product/edit/')?>id/<?=$product_id?>/back/edit/sun/update_statuses/sun_items_statuses/' + ids.join(','), function(data){
949
  data = JSON.parse(data);
950
  if (data.status) {
951
- for (var i = 0, n = elems.length; i < n; i++) {
952
- elems[i].className += ' disabled';
953
  document.getElementById('orbitvu-gallery-item-' + ids[i]).className += ' hidden';
954
  }
955
  button.style.display = 'inline-block';
904
  var elems = document.getElementsByClassName('orbitvu-visibility'),
905
  button = document.getElementById('orbitvu-button-enable-items'),
906
  img = document.getElementById('enable_all_items_loader'),
907
+ ids = [],
908
+ proper_elems = [];
909
 
910
  button.style.display = 'none';
911
  img.style.display = 'inline-block';
912
  for (var i = 0, n = elems.length; i < n; i++) {
913
  if (elems[i].className.replace(' disabled', '') !== elems[i].className) {
914
  ids.push(parseInt(elems[i].id.replace('orbitvu-visibility-trigger-', '')));
915
+ proper_elems.push(elems[i]);
916
  }
917
  }
918
  if (ids.length) {
919
  orbitvu_ajax('<?=$this->getUrl('*/catalog_product/edit/')?>id/<?=$product_id?>/back/edit/sun/update_statuses/sun_items_statuses/' + ids.join(',') + '/sun_status/active', function(data){
920
  data = JSON.parse(data);
921
  if (data.status) {
922
+ for (var i = 0, n = proper_elems.length; i < n; i++) {
923
+ proper_elems[i].className = proper_elems[i].className.replace(' disabled', '');
924
  document.getElementById('orbitvu-gallery-item-' + ids[i]).className = document.getElementById('orbitvu-gallery-item-' + ids[i]).className.replace(' hidden', '');
925
  }
926
  button.style.display = 'inline-block';
937
  var elems = document.getElementsByClassName('orbitvu-visibility'),
938
  button = document.getElementById('orbitvu-button-disable-items'),
939
  img = document.getElementById('disable_all_items_loader'),
940
+ ids = [],
941
+ proper_elems = [];
942
 
943
  button.style.display = 'none';
944
  img.style.display = 'inline-block';
945
  for (var i = 0, n = elems.length; i < n; i++) {
946
  if (elems[i].className.replace(' disabled', '') === elems[i].className) {
947
  ids.push(parseInt(elems[i].id.replace('orbitvu-visibility-trigger-', '')));
948
+ proper_elems.push(elems[i]);
949
  }
950
  }
951
  if (ids.length) {
952
  orbitvu_ajax('<?=$this->getUrl('*/catalog_product/edit/')?>id/<?=$product_id?>/back/edit/sun/update_statuses/sun_items_statuses/' + ids.join(','), function(data){
953
  data = JSON.parse(data);
954
  if (data.status) {
955
+ for (var i = 0, n = proper_elems.length; i < n; i++) {
956
+ proper_elems[i].className += ' disabled';
957
  document.getElementById('orbitvu-gallery-item-' + ids[i]).className += ' hidden';
958
  }
959
  button.style.display = 'inline-block';
app/design/frontend/base/default/template/orbitvu/product/view/media.phtml CHANGED
@@ -280,7 +280,7 @@ if (count($presentation['items']) > 0) {
280
  position: relative;
281
  padding-bottom: <?=$ratio; ?>; /* 16:9 - default */
282
  height: 0;
283
- z-index: 0;
284
  }
285
  </style>
286
 
280
  position: relative;
281
  padding-bottom: <?=$ratio; ?>; /* 16:9 - default */
282
  height: 0;
283
+ z-index: 9;
284
  }
285
  </style>
286
 
package.xml CHANGED
@@ -1,23 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Orbitvu_Sun</name>
4
- <version>1.0.6</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&#xB0;/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&#xB0;/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 &#x2013; the global leader for automated imaging solutions.</description>
11
- <notes>-intrastic gallery added&#xD;
12
- -license update&#xD;
13
- -thumbnails scroll fix&#xD;
14
- -added thumbnail padding option&#xD;
15
- -enable/disable scroll&#xD;
16
- -added disable/enable all orbitvu thumbnails option</notes>
17
  <authors><author><name>Orbitvu</name><user>dev</user><email>dev@orbitvu.com</email></author></authors>
18
- <date>2015-05-07</date>
19
- <time>08:45:11</time>
20
- <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="566e3b0df121fb937d4a365387df8d9a"/><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="Model"><file name="Observer.php" hash="84baba1ac62f328c61b23ed80d37aeb1"/><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="2dca4e09d15b202955dd0f80832d9e83"/><file name="OrbitvuConnect.php" hash="9323cefbb48713d4e8764a8f7abfa3a1"/><file name="OrbitvuDatabaseDriver.php" hash="407d3bdd621bc69b97cbc44f75331ca4"/><file name="OrbitvuDatabaseInterface.php" hash="a477911c34159dd410804b32473b9dd9"/><file name="OrbitvuDebugger.php" hash="2a1dd59fa2512a1ce877c5b9b1f8819d"/><file name="OrbitvuTests.php" hash="cdeeeaba1fd5b70ecfaea03e8718cd66"/></dir><dir name="etc"><file name="adminhtml.xml" hash="634a0d073117091e52853a3336e0e61f"/><file name="config.xml" hash="a4dd8bf0b23b62c9a3c89b3c859ef5c6"/><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-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"/></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="bfb5096f1b7b44554a65e76721d68372"/></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="6985f2a9c840d879b5b6c87833a480af"/></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>
21
  <compatible/>
22
  <dependencies><required><php><min>5.0.0</min><max>6.0.0</max></php></required></dependencies>
23
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Orbitvu_Sun</name>
4
+ <version>1.0.7</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&#xB0;/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&#xB0;/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 &#x2013; the global leader for automated imaging solutions.</description>
11
+ <notes>-fixed zoom on hover z-index</notes>
 
 
 
 
 
12
  <authors><author><name>Orbitvu</name><user>dev</user><email>dev@orbitvu.com</email></author></authors>
13
+ <date>2015-05-13</date>
14
+ <time>08:40:34</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="566e3b0df121fb937d4a365387df8d9a"/><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="Model"><file name="Observer.php" hash="84baba1ac62f328c61b23ed80d37aeb1"/><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="2dca4e09d15b202955dd0f80832d9e83"/><file name="OrbitvuConnect.php" hash="9323cefbb48713d4e8764a8f7abfa3a1"/><file name="OrbitvuDatabaseDriver.php" hash="407d3bdd621bc69b97cbc44f75331ca4"/><file name="OrbitvuDatabaseInterface.php" hash="a477911c34159dd410804b32473b9dd9"/><file name="OrbitvuDebugger.php" hash="2a1dd59fa2512a1ce877c5b9b1f8819d"/><file name="OrbitvuTests.php" hash="cdeeeaba1fd5b70ecfaea03e8718cd66"/></dir><dir name="etc"><file name="adminhtml.xml" hash="634a0d073117091e52853a3336e0e61f"/><file name="config.xml" hash="98e806328e94c2d31cb9e4054bc1e294"/><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-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"/></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="e6a8bb3525ff641074ccdb433e1b4dc6"/></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>
16
  <compatible/>
17
  <dependencies><required><php><min>5.0.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>