Version Notes
Free Auguria_Core extension included.
Download this release
Release Info
Developer | Auguria |
Extension | auguriaInteractiveImage |
Version | 0.0.2 |
Comparing to | |
See all releases |
Code changes from version 0.0.1 to 0.0.2
- app/code/community/Auguria/Core/Helper/Data.php +9 -0
- app/code/community/Auguria/Core/Model/Attribute/Backend/Image/Abstract.php +59 -0
- app/code/community/Auguria/Core/Model/Customer/Attribute/Source/Group.php +22 -0
- app/code/community/Auguria/Core/Model/System/Config/Source/Config.php +35 -0
- app/code/community/Auguria/Core/Model/System/Config/Source/Customer/Group/Multiselect.php +34 -0
- app/code/community/Auguria/Core/etc/config.xml +50 -0
- app/code/community/Auguria/Core/etc/system.xml +17 -0
- app/code/community/Auguria/InteractiveImage/etc/config.xml +1 -1
- app/design/adminhtml/default/default/layout/auguria/core.xml +19 -0
- app/etc/modules/Auguria_Core.xml +17 -0
- app/locale/en_US/Auguria_Core.csv +0 -0
- app/locale/fr_FR/Auguria_Core.csv +0 -0
- package.xml +5 -5
- skin/adminhtml/default/default/auguria/core.css +17 -0
- skin/adminhtml/default/default/auguria/images/section-header.png +0 -0
- skin/adminhtml/default/default/auguria/images/tab-header.png +0 -0
app/code/community/Auguria/Core/Helper/Data.php
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* @category Auguria
|
4 |
+
* @package Auguria_Core
|
5 |
+
* @author Auguria
|
6 |
+
* @license http://opensource.org/licenses/gpl-3.0.html GNU General Public License version 3 (GPLv3)
|
7 |
+
*/
|
8 |
+
|
9 |
+
class Auguria_Core_Helper_Data extends Mage_Core_Helper_Abstract {}
|
app/code/community/Auguria/Core/Model/Attribute/Backend/Image/Abstract.php
ADDED
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* @category Auguria
|
4 |
+
* @package Auguria_Core
|
5 |
+
* @author Auguria
|
6 |
+
* @license http://opensource.org/licenses/gpl-3.0.html GNU General Public License version 3 (GPLv3)
|
7 |
+
*/
|
8 |
+
|
9 |
+
abstract class Auguria_Core_Model_Attribute_Backend_Image_Abstract extends Mage_Eav_Model_Entity_Attribute_Backend_Abstract
|
10 |
+
{
|
11 |
+
/**
|
12 |
+
* Save uploaded file
|
13 |
+
*
|
14 |
+
* @param Varien_Object $object
|
15 |
+
*/
|
16 |
+
public function afterSave($object)
|
17 |
+
{
|
18 |
+
$value = $object->getData($this->getAttribute()->getName());
|
19 |
+
|
20 |
+
if (is_array($value) && !empty($value['delete'])) {
|
21 |
+
$object->setData($this->getAttribute()->getName(), '');
|
22 |
+
$this->getAttribute()->getEntity()
|
23 |
+
->saveAttribute($object, $this->getAttribute()->getName());
|
24 |
+
return;
|
25 |
+
}
|
26 |
+
|
27 |
+
try {
|
28 |
+
$uploader = new Mage_Core_Model_File_Uploader($this->getAttribute()->getName());
|
29 |
+
$uploader->setAllowedExtensions(array('jpg','jpeg','gif','png'));
|
30 |
+
$uploader->setAllowRenameFiles(true);
|
31 |
+
$result = $uploader->save($this->_getPath());
|
32 |
+
|
33 |
+
$object->setData($this->getAttribute()->getName(), $this->_getPrefix() . $result['file']);
|
34 |
+
$this->getAttribute()->getEntity()->saveAttribute($object, $this->getAttribute()->getName());
|
35 |
+
} catch (Exception $e) {
|
36 |
+
if ($e->getCode() != Mage_Core_Model_File_Uploader::TMP_NAME_EMPTY) {
|
37 |
+
Mage::logException($e);
|
38 |
+
}
|
39 |
+
return;
|
40 |
+
}
|
41 |
+
}
|
42 |
+
|
43 |
+
/**
|
44 |
+
* Get path to save file
|
45 |
+
*
|
46 |
+
* @return string
|
47 |
+
*/
|
48 |
+
abstract protected function _getPath();
|
49 |
+
|
50 |
+
/**
|
51 |
+
* Get prefix when save path file in attribute value
|
52 |
+
*
|
53 |
+
* @return string
|
54 |
+
*/
|
55 |
+
protected function _getPrefix()
|
56 |
+
{
|
57 |
+
return;
|
58 |
+
}
|
59 |
+
}
|
app/code/community/Auguria/Core/Model/Customer/Attribute/Source/Group.php
ADDED
@@ -0,0 +1,22 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* @category Auguria
|
4 |
+
* @package Auguria_Core
|
5 |
+
* @author Auguria
|
6 |
+
* @license http://opensource.org/licenses/gpl-3.0.html GNU General Public License version 3 (GPLv3)
|
7 |
+
*/
|
8 |
+
|
9 |
+
class Auguria_Core_Model_Customer_Attribute_Source_Group extends Mage_Eav_Model_Entity_Attribute_Source_Table
|
10 |
+
{
|
11 |
+
public function getAllOptions()
|
12 |
+
{
|
13 |
+
if (!$this->_options) {
|
14 |
+
$this->_options = Mage::getResourceModel('customer/group_collection')
|
15 |
+
//->setRealGroupsFilter() GET NOT LOGGED IN GROUP
|
16 |
+
->load()
|
17 |
+
->toOptionArray()
|
18 |
+
;
|
19 |
+
}
|
20 |
+
return $this->_options;
|
21 |
+
}
|
22 |
+
}
|
app/code/community/Auguria/Core/Model/System/Config/Source/Config.php
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* @category Auguria
|
4 |
+
* @package Auguria_Core
|
5 |
+
* @author Auguria
|
6 |
+
* @license http://opensource.org/licenses/gpl-3.0.html GNU General Public License version 3 (GPLv3)
|
7 |
+
*/
|
8 |
+
|
9 |
+
abstract class Auguria_Core_Model_System_Config_Source_Config
|
10 |
+
{
|
11 |
+
|
12 |
+
const CONFIG_OPTIONS_PATH = '';
|
13 |
+
|
14 |
+
/**
|
15 |
+
* Options getter
|
16 |
+
*
|
17 |
+
* @return array
|
18 |
+
*/
|
19 |
+
public function toOptionArray()
|
20 |
+
{
|
21 |
+
$nodes = Mage::getConfig()->getNode(static::CONFIG_OPTIONS_PATH);
|
22 |
+
$translator = (string)$nodes->getAttribute('translator'); // used to translate label
|
23 |
+
|
24 |
+
$options = array();
|
25 |
+
|
26 |
+
foreach($nodes as $_node){
|
27 |
+
foreach ($_node as $_option){
|
28 |
+
$options[] = array('value' => (string)$_option->value, 'label' => Mage::helper($translator)->__((string)$_option->label));
|
29 |
+
}
|
30 |
+
}
|
31 |
+
|
32 |
+
return $options;
|
33 |
+
}
|
34 |
+
|
35 |
+
}
|
app/code/community/Auguria/Core/Model/System/Config/Source/Customer/Group/Multiselect.php
ADDED
@@ -0,0 +1,34 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* @category Auguria
|
4 |
+
* @package Auguria_Core
|
5 |
+
* @author Auguria
|
6 |
+
* @license http://opensource.org/licenses/gpl-3.0.html GNU General Public License version 3 (GPLv3)
|
7 |
+
*/
|
8 |
+
|
9 |
+
class Auguria_Core_Model_System_Config_Source_Customer_Group_Multiselect
|
10 |
+
{
|
11 |
+
|
12 |
+
/**
|
13 |
+
* Customer groups options array
|
14 |
+
*
|
15 |
+
* @var null|array
|
16 |
+
*/
|
17 |
+
protected $_options;
|
18 |
+
|
19 |
+
/**
|
20 |
+
* Retrieve customer groups as array
|
21 |
+
*
|
22 |
+
* @return array
|
23 |
+
*/
|
24 |
+
public function toOptionArray()
|
25 |
+
{
|
26 |
+
if (!$this->_options) {
|
27 |
+
$this->_options = Mage::getResourceModel('customer/group_collection')
|
28 |
+
//->setRealGroupsFilter() Get the NOT LOGGED IN GROUP TOO
|
29 |
+
->loadData()->toOptionArray();
|
30 |
+
}
|
31 |
+
return $this->_options;
|
32 |
+
}
|
33 |
+
|
34 |
+
}
|
app/code/community/Auguria/Core/etc/config.xml
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* @category Auguria
|
5 |
+
* @package Auguria_Core
|
6 |
+
* @author Auguria
|
7 |
+
* @license http://opensource.org/licenses/gpl-3.0.html GNU General Public License version 3 (GPLv3)
|
8 |
+
*/
|
9 |
+
-->
|
10 |
+
<config>
|
11 |
+
|
12 |
+
<modules>
|
13 |
+
<Auguria_Core>
|
14 |
+
<version/>
|
15 |
+
</Auguria_Core>
|
16 |
+
</modules>
|
17 |
+
|
18 |
+
<global>
|
19 |
+
<helpers>
|
20 |
+
<auguria_core>
|
21 |
+
<class>Auguria_Core_Helper</class>
|
22 |
+
</auguria_core>
|
23 |
+
</helpers>
|
24 |
+
<models>
|
25 |
+
<auguria_core>
|
26 |
+
<class>Auguria_Core_Model</class>
|
27 |
+
</auguria_core>
|
28 |
+
</models>
|
29 |
+
</global>
|
30 |
+
|
31 |
+
<adminhtml>
|
32 |
+
<layout>
|
33 |
+
<updates>
|
34 |
+
<auguria_core>
|
35 |
+
<file>auguria/core.xml</file>
|
36 |
+
</auguria_core>
|
37 |
+
</updates>
|
38 |
+
</layout>
|
39 |
+
<translate>
|
40 |
+
<modules>
|
41 |
+
<Auguria_Core>
|
42 |
+
<files>
|
43 |
+
<default>Auguria_Core.csv</default>
|
44 |
+
</files>
|
45 |
+
</Auguria_Core>
|
46 |
+
</modules>
|
47 |
+
</translate>
|
48 |
+
</adminhtml>
|
49 |
+
|
50 |
+
</config>
|
app/code/community/Auguria/Core/etc/system.xml
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!--
|
2 |
+
/**
|
3 |
+
* @category Auguria
|
4 |
+
* @package Auguria_Core
|
5 |
+
* @author Auguria
|
6 |
+
* @license http://opensource.org/licenses/gpl-3.0.html GNU General Public License version 3 (GPLv3)
|
7 |
+
*/
|
8 |
+
-->
|
9 |
+
<config>
|
10 |
+
<tabs>
|
11 |
+
<auguria>
|
12 |
+
<label></label>
|
13 |
+
<sort_order>150</sort_order>
|
14 |
+
<class>auguria-tab</class>
|
15 |
+
</auguria>
|
16 |
+
</tabs>
|
17 |
+
</config>
|
app/code/community/Auguria/InteractiveImage/etc/config.xml
CHANGED
@@ -11,7 +11,7 @@
|
|
11 |
|
12 |
<modules>
|
13 |
<Auguria_InteractiveImage>
|
14 |
-
<version>0.0.
|
15 |
</Auguria_InteractiveImage>
|
16 |
</modules>
|
17 |
|
11 |
|
12 |
<modules>
|
13 |
<Auguria_InteractiveImage>
|
14 |
+
<version>0.0.2</version>
|
15 |
</Auguria_InteractiveImage>
|
16 |
</modules>
|
17 |
|
app/design/adminhtml/default/default/layout/auguria/core.xml
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* @category Auguria
|
5 |
+
* @package Auguria_Core
|
6 |
+
* @author Auguria
|
7 |
+
* @license http://opensource.org/licenses/gpl-3.0.html GNU General Public License version 3 (GPLv3)
|
8 |
+
*/
|
9 |
+
-->
|
10 |
+
|
11 |
+
<layout>
|
12 |
+
|
13 |
+
<default>
|
14 |
+
<reference name="head">
|
15 |
+
<action method="addCss"><link>auguria/core.css</link></action>
|
16 |
+
</reference>
|
17 |
+
</default>
|
18 |
+
|
19 |
+
</layout>
|
app/etc/modules/Auguria_Core.xml
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<!--
|
3 |
+
/**
|
4 |
+
* @category Auguria
|
5 |
+
* @package Auguria_Core
|
6 |
+
* @author Auguria
|
7 |
+
* @license http://opensource.org/licenses/gpl-3.0.html GNU General Public License version 3 (GPLv3)
|
8 |
+
*/
|
9 |
+
-->
|
10 |
+
<config>
|
11 |
+
<modules>
|
12 |
+
<Auguria_Core>
|
13 |
+
<active>true</active>
|
14 |
+
<codePool>community</codePool>
|
15 |
+
</Auguria_Core>
|
16 |
+
</modules>
|
17 |
+
</config>
|
app/locale/en_US/Auguria_Core.csv
ADDED
File without changes
|
app/locale/fr_FR/Auguria_Core.csv
ADDED
File without changes
|
package.xml
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>auguriaInteractiveImage</name>
|
4 |
-
<version>0.0.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/gpl-license.php">GNU General Public License</license>
|
7 |
<channel>community</channel>
|
@@ -18,11 +18,11 @@
|
|
18 |

|
19 |
Free Auguria_Core extension required.
|
20 |
</description>
|
21 |
-
<notes>
|
22 |
<authors><author><name>Auguria</name><user>auguria</user><email>magento@auguria.net</email></author></authors>
|
23 |
-
<date>2014-
|
24 |
-
<time>
|
25 |
-
<contents><target name="magecommunity"><dir name="Auguria"><dir name="InteractiveImage"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><dir name="Helper"><dir name="Form"><dir name="Image"><dir name="Interactive"><dir name="Panel"><dir name="Area"><file name="Default.php" hash="27c20fcc58c34a619c76c7d9f3020238"/></dir><file name="Areas.php" hash="79d25988e2c8898ef472aa0abfe29728"/></dir><file name="Popin.php" hash="f311bc5eb2b7a1de5b85cd4cf90922dc"/></dir><file name="Interactive.php" hash="b00f872fae58bbe8eaaa17d1a479f495"/></dir></dir></dir></dir></dir></dir><dir name="Catalog"><dir name="Product"><file name="Image.php" hash="0ae00def32a8ff335dbc8ab21d0b6abb"/></dir></dir></dir><dir name="Helper"><file name="Config.php" hash="1b681b6bc6026d85612e71e92e7e231b"/><file name="Data.php" hash="f77d687f8f8394f380b0c49011aed92f"/></dir><dir name="Model"><dir name="Catalog"><dir name="Product"><dir name="Attribute"><dir name="Backend"><file name="Image.php" hash="d4626a456cf2bf891b6907ab29d16224"/></dir></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Auguria"><dir name="InteractiveImage"><file name="ImageController.php" hash="e2785e9df66cd2f18cd27b7a4591ee99"/></dir></dir></dir><dir name="Checkout"><dir name="Cart"><file name="AjaxController.php" hash="08e9986648018b25072b09855166b555"/></dir><file name="CartController.php" hash="03f0f24305a19f07001fe71853f58d81"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="5ec267e2e63459b3ec9eb7784ea9e4da"/><file name="config.xml" hash="
|
26 |
<compatible/>
|
27 |
<dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies>
|
28 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>auguriaInteractiveImage</name>
|
4 |
+
<version>0.0.2</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/gpl-license.php">GNU General Public License</license>
|
7 |
<channel>community</channel>
|
18 |

|
19 |
Free Auguria_Core extension required.
|
20 |
</description>
|
21 |
+
<notes>Free Auguria_Core extension included.</notes>
|
22 |
<authors><author><name>Auguria</name><user>auguria</user><email>magento@auguria.net</email></author></authors>
|
23 |
+
<date>2014-07-01</date>
|
24 |
+
<time>12:55:44</time>
|
25 |
+
<contents><target name="magecommunity"><dir name="Auguria"><dir name="InteractiveImage"><dir name="Block"><dir name="Adminhtml"><dir name="Catalog"><dir name="Product"><dir name="Helper"><dir name="Form"><dir name="Image"><dir name="Interactive"><dir name="Panel"><dir name="Area"><file name="Default.php" hash="27c20fcc58c34a619c76c7d9f3020238"/></dir><file name="Areas.php" hash="79d25988e2c8898ef472aa0abfe29728"/></dir><file name="Popin.php" hash="f311bc5eb2b7a1de5b85cd4cf90922dc"/></dir><file name="Interactive.php" hash="b00f872fae58bbe8eaaa17d1a479f495"/></dir></dir></dir></dir></dir></dir><dir name="Catalog"><dir name="Product"><file name="Image.php" hash="0ae00def32a8ff335dbc8ab21d0b6abb"/></dir></dir></dir><dir name="Helper"><file name="Config.php" hash="1b681b6bc6026d85612e71e92e7e231b"/><file name="Data.php" hash="f77d687f8f8394f380b0c49011aed92f"/></dir><dir name="Model"><dir name="Catalog"><dir name="Product"><dir name="Attribute"><dir name="Backend"><file name="Image.php" hash="d4626a456cf2bf891b6907ab29d16224"/></dir></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Auguria"><dir name="InteractiveImage"><file name="ImageController.php" hash="e2785e9df66cd2f18cd27b7a4591ee99"/></dir></dir></dir><dir name="Checkout"><dir name="Cart"><file name="AjaxController.php" hash="08e9986648018b25072b09855166b555"/></dir><file name="CartController.php" hash="03f0f24305a19f07001fe71853f58d81"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="5ec267e2e63459b3ec9eb7784ea9e4da"/><file name="config.xml" hash="a310e08733d8322dac53909760e54a88"/><file name="jstranslator.xml" hash="f85990cfdb8aac7ea10529c4b2dab0e6"/><file name="system.xml" hash="854e957398da36fd688cea794ab48fe8"/></dir><dir name="sql"><dir name="auguria_interactiveimage_setup"><file name="install-0.0.1.php" hash="42e8345c1826f45cb90a5a43d5ab3780"/></dir></dir></dir><dir name="Core"><dir name="Helper"><file name="Data.php" hash="73bdf383ed70ef7a844149518637d4b1"/></dir><dir name="Model"><dir name="Attribute"><dir name="Backend"><dir name="Image"><file name="Abstract.php" hash="4ac4fc2b5653635b2c7d6a6761d32394"/></dir></dir></dir><dir name="Customer"><dir name="Attribute"><dir name="Source"><file name="Group.php" hash="275163848ce915273abf1b3bc752a112"/></dir></dir></dir><dir name="System"><dir name="Config"><dir name="Source"><file name="Config.php" hash="5e31ba47c019daa5575b9e442060f1d6"/><dir name="Customer"><dir name="Group"><file name="Multiselect.php" hash="7ffe45941e1a10491e0b161d5e5a2572"/></dir></dir></dir></dir></dir></dir><dir name="etc"><file name="config.xml" hash="152714fbae8487307145ad01929173fd"/><file name="system.xml" hash="addce60a6afe7b99f9bbb8fa813d9010"/></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="auguria"><dir name="interactiveimage"><dir name="catalog"><dir name="product"><dir name="helper"><dir name="form"><dir name="image"><dir name="interactive"><dir name="panel"><dir name="area"><file name="default.phtml" hash="747a1cb7a7e43dfb59abd38ee14afdd5"/></dir><file name="areas.phtml" hash="0ab8dccd7bbd5b4532f1d6eb46083459"/></dir><file name="popin.phtml" hash="fbdb832cdb9a769aaabe9e694a819dfc"/></dir></dir></dir></dir></dir></dir></dir></dir></dir><dir name="layout"><dir name="auguria"><file name="interactive_image.xml" hash="ef596e624796cc469f3660276d9a4233"/><file name="core.xml" hash="73d41f963e258e406b8b9042b7b0f17b"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="auguria"><dir name="interactiveimage"><dir name="catalog"><dir name="product"><file name="image.phtml" hash="b248488043e9347baa20ee71504ce462"/></dir></dir></dir></dir></dir><dir name="layout"><dir name="auguria"><file name="interactive_image.xml" hash="6a51a87a692676a91bad0236a1965520"/></dir></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="auguria"><dir name="interactiveimage"><file name="cart.js" hash="724efb87a4b8fe5e5850921bc928e72d"/><file name="image.js" hash="5c64f22d0a98a0c77156378efd042da7"/><file name="jquery-1.10.2.min.js" hash="055b1c0c38f106959bdd3cee7e6b0136"/><file name="jquery.maphilight.min.js" hash="060990df8870589e0e629349f8fb3a4c"/><file name="kinetic-v4.5.4.min.js" hash="5d114c84e5926c19c8b1cee80ea79ce5"/></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="auguria"><dir name="interactiveimage"><file name="image.css" hash="47b0fbfecac78ae0b5a524cf85a5c515"/></dir><file name="core.css" hash="f21626dc01765695d52346bb5da8c0cb"/><dir name="images"><file name="tab-header.png" hash="277234c8e4a9462fe0bf91c174cef179"/><file name="section-header.png" hash="277234c8e4a9462fe0bf91c174cef179"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="css"><dir name="auguria"><dir name="interactiveimage"><file name="image.css" hash="4081440dcd4fa462f4d18b9ef76266ea"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Auguria_InteractiveImage.csv" hash="d41d8cd98f00b204e9800998ecf8427e"/><file name="Auguria_Core.csv" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir><dir name="fr_FR"><file name="Auguria_InteractiveImage.csv" hash="ca76a1aa121f73673b8fc16a6fcd7bc2"/><file name="Auguria_Core.csv" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir></target><target name="mageetc"><dir name="modules"><file name="Auguria_InteractiveImage.xml" hash="bd010178de76af694025d33e666e55b2"/><file name="Auguria_Core.xml" hash="1569ebe15f1c2b8e4b5c61b9bc797fe6"/></dir></target></contents>
|
26 |
<compatible/>
|
27 |
<dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies>
|
28 |
</package>
|
skin/adminhtml/default/default/auguria/core.css
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!--
|
2 |
+
/**
|
3 |
+
* @category Auguria
|
4 |
+
* @package Auguria_Core
|
5 |
+
* @author Auguria
|
6 |
+
* @license http://opensource.org/licenses/gpl-3.0.html GNU General Public License version 3 (GPLv3)
|
7 |
+
*/
|
8 |
+
-->
|
9 |
+
li.auguria-tab dl dt.label {
|
10 |
+
background: url('images/tab-header.png') no-repeat scroll 40px 6px #ffffff;
|
11 |
+
height: 28px;
|
12 |
+
}
|
13 |
+
h3.auguria-header {
|
14 |
+
background: url("images/section-header.png") no-repeat scroll 4px 12px transparent;
|
15 |
+
padding: 11px 0 2px 140px;
|
16 |
+
height: 19px;
|
17 |
+
}
|
skin/adminhtml/default/default/auguria/images/section-header.png
ADDED
Binary file
|
skin/adminhtml/default/default/auguria/images/tab-header.png
ADDED
Binary file
|