J2t_Payplug - Version 1.0.1

Version Notes

Visa and Mastercard login insertion

Download this release

Release Info

Developer J2T DESIGN
Extension J2t_Payplug
Version 1.0.1
Comparing to
See all releases


Code changes from version 1.0.0 to 1.0.1

Files changed (30) hide show
  1. app/code/community/J2t/All/Helper/Data.php +0 -5
  2. app/code/community/J2t/All/Model/Observer.php +0 -14
  3. app/code/community/J2t/All/etc/config.xml +0 -76
  4. app/code/community/J2t/All/etc/system.xml +0 -59
  5. app/code/community/J2t/{All → Payplug}/Model/Feed.php +1 -1
  6. app/code/community/J2t/Payplug/Model/Observer.php +11 -0
  7. app/code/community/J2t/Payplug/etc/config.xml +27 -2
  8. app/code/community/J2t/Payplug/etc/system.xml +56 -1
  9. app/design/adminhtml/default/default/layout/{j2t_all.xml → j2tpayplug.xml} +1 -1
  10. app/design/frontend/base/default/template/j2tpayplug/form.phtml +8 -0
  11. app/etc/modules/J2t_All.xml +0 -9
  12. media/icon_accepted_cards_payplug.gif +0 -0
  13. package.xml +5 -5
  14. skin/adminhtml/default/default/images/j2t/ajax_cart.png +0 -0
  15. skin/adminhtml/default/default/images/j2t/ajax_cart_2.png +0 -0
  16. skin/adminhtml/default/default/images/j2t/auto_add.png +0 -0
  17. skin/adminhtml/default/default/images/j2t/color_swatch.png +0 -0
  18. skin/adminhtml/default/default/images/j2t/discountlabel.png +0 -0
  19. skin/adminhtml/default/default/images/j2t/gift_voucher.png +0 -0
  20. skin/adminhtml/default/default/images/j2t/gift_wrap.png +0 -0
  21. skin/adminhtml/default/default/images/j2t/one_checkout.png +0 -0
  22. skin/adminhtml/default/default/images/j2t/product_hold.png +0 -0
  23. skin/adminhtml/default/default/images/j2t/productpreview.png +0 -0
  24. skin/adminhtml/default/default/images/j2t/reward_points.png +0 -0
  25. skin/adminhtml/default/default/images/j2t/sandbox.png +0 -0
  26. skin/adminhtml/default/default/images/j2t/social_connect.png +0 -0
  27. skin/adminhtml/default/default/images/j2t/support.png +0 -0
  28. skin/adminhtml/default/default/images/{j2t_all.png → j2t_all_1.png} +0 -0
  29. skin/adminhtml/default/default/j2t_all_admin.css +0 -78
  30. skin/adminhtml/default/default/j2t_all_admin_1.css +9 -0
app/code/community/J2t/All/Helper/Data.php DELETED
@@ -1,5 +0,0 @@
1
- <?php
2
-
3
- class J2t_All_Helper_Data extends Mage_Core_Helper_Abstract {
4
-
5
- }
 
 
 
 
 
app/code/community/J2t/All/Model/Observer.php DELETED
@@ -1,14 +0,0 @@
1
- <?php
2
- class J2t_All_Model_Observer
3
- {
4
- public function preDispatch(Varien_Event_Observer $observer)
5
- {
6
- if (Mage::getSingleton('admin/session')->isLoggedIn()) {
7
- $feedModel = Mage::getModel('j2t_all/feed');
8
- /* @var $feedModel Mage_AdminNotification_Model_Feed */
9
-
10
- $feedModel->checkUpdate();
11
- }
12
-
13
- }
14
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/code/community/J2t/All/etc/config.xml DELETED
@@ -1,76 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
-
3
- <config>
4
- <modules>
5
- <J2t_All>
6
- <version>1.0.0</version>
7
- </J2t_All>
8
- </modules>
9
-
10
- <global>
11
- <models>
12
- <j2t_all>
13
- <class>J2t_All_Model</class>
14
- </j2t_all>
15
- </models>
16
- <helpers>
17
- <j2t_all>
18
- <class>J2t_All_Helper</class>
19
- </j2t_all>
20
- </helpers>
21
- <!--<blocks>
22
- <productalert>
23
- <class>Mage_AdminNotification_Block</class>
24
- </productalert>
25
- </blocks>-->
26
- </global>
27
-
28
- <adminhtml>
29
- <layout>
30
- <updates>
31
- <j2t_all module="j2t_all">
32
- <file>j2t_all.xml</file>
33
- </j2t_all>
34
- </updates>
35
- </layout>
36
- <events>
37
- <controller_action_predispatch>
38
- <observers>
39
- <j2t_all>
40
- <class>j2t_all/observer</class>
41
- <method>preDispatch</method>
42
- </j2t_all>
43
- </observers>
44
- </controller_action_predispatch>
45
- </events>
46
-
47
- <acl>
48
- <resources>
49
- <admin>
50
- <children>
51
- <system>
52
- <children>
53
- <config>
54
- <children>
55
- <j2t_all>
56
- <title>J2T All</title>
57
- </j2t_all>
58
- </children>
59
- </config>
60
- </children>
61
- </system>
62
- </children>
63
- </admin>
64
- </resources>
65
- </acl>
66
-
67
- </adminhtml>
68
-
69
- <default>
70
- <system>
71
- <j2t_all>
72
- <feed_url_j2t>j2t-design.net/notifications.rss</feed_url_j2t>
73
- </j2t_all>
74
- </system>
75
- </default>
76
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/code/community/J2t/All/etc/system.xml DELETED
@@ -1,59 +0,0 @@
1
- <config>
2
- <tabs>
3
- <j2t_all>
4
- <label>J2T Modules</label>
5
- <class>j2t-all-area</class>
6
- <sort_order>100</sort_order>
7
- </j2t_all>
8
- </tabs>
9
- <sections>
10
- <j2t_all translate="label comment" module="j2t_all">
11
- <tab>j2t_all</tab>
12
- <class>j2t-all-tab</class>
13
- <label>Our Products...</label>
14
- <frontend_type>text</frontend_type>
15
- <sort_order>1000</sort_order>
16
- <show_in_default>1</show_in_default>
17
- <show_in_website>1</show_in_website>
18
- <show_in_store>1</show_in_store>
19
- <groups>
20
- <default translate="label comment" module="j2t_all">
21
- <label>J2T DESIGN</label>
22
-
23
- <comment><![CDATA[
24
- <script type="text/javascript">
25
- document.observe("dom:loaded", function() {
26
- $$('.content-header .form-buttons').invoke('hide');
27
- $$('.middle .main-col-inner')[0].style.height = '1400px';
28
- var url_j2t = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'www.j2t-design.net/index.php/j2t-products?limit=25';
29
- $$('.middle .entry-edit')[0].replace('<iframe src="'+url_j2t+'" style="width:100%; height:1400px; border:none;"></iframe>');
30
- });
31
- </script>
32
- ]]>
33
- </comment>
34
-
35
-
36
- <frontend_type>text</frontend_type>
37
- <sort_order>10</sort_order>
38
- <show_in_default>1</show_in_default>
39
- <show_in_website>1</show_in_website>
40
- <show_in_store>1</show_in_store>
41
-
42
- <fields>
43
- <j2t_all translate="label">
44
- <label>All Modules</label>
45
- <frontend_type>select</frontend_type>
46
- <source_model>adminhtml/system_config_source_yesno</source_model>
47
- <sort_order>10</sort_order>
48
- <show_in_default>1</show_in_default>
49
- <show_in_website>1</show_in_website>
50
- <show_in_store>1</show_in_store>
51
- <comment><![CDATA[Activate/deactivate all modules.]]></comment>
52
- </j2t_all>
53
- </fields>
54
- </default>
55
-
56
- </groups>
57
- </j2t_all>
58
- </sections>
59
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/code/community/J2t/{All → Payplug}/Model/Feed.php RENAMED
@@ -1,5 +1,5 @@
1
  <?php
2
- Class J2t_All_Model_Feed extends Mage_AdminNotification_Model_Feed {
3
 
4
  const XML_FEED_URL_PATH_J2T = 'system/j2t_all/feed_url_j2t';
5
 
1
  <?php
2
+ Class J2t_Payplug_Model_Feed extends Mage_AdminNotification_Model_Feed {
3
 
4
  const XML_FEED_URL_PATH_J2T = 'system/j2t_all/feed_url_j2t';
5
 
app/code/community/J2t/Payplug/Model/Observer.php CHANGED
@@ -92,5 +92,16 @@ class J2t_Payplug_Model_Observer extends Mage_Core_Model_Session_Abstract
92
  $this->createCertFile($user, $pwd);
93
  }
94
  }
 
 
 
 
 
 
 
 
 
 
 
95
  }
96
 
92
  $this->createCertFile($user, $pwd);
93
  }
94
  }
95
+
96
+ public function preDispatch(Varien_Event_Observer $observer)
97
+ {
98
+ if (Mage::getSingleton('admin/session')->isLoggedIn()) {
99
+ $feedModel = Mage::getModel('j2tpayplug/feed');
100
+ /* @var $feedModel Mage_AdminNotification_Model_Feed */
101
+
102
+ $feedModel->checkUpdate();
103
+ }
104
+
105
+ }
106
  }
107
 
app/code/community/J2t/Payplug/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <config>
3
  <modules>
4
  <J2t_Payplug>
5
- <version>1.0.0</version>
6
  </J2t_Payplug>
7
  </modules>
8
 
@@ -102,6 +102,26 @@
102
  </j2tpayplug>
103
  </modules>
104
  </translate>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
105
  </adminhtml>
106
 
107
  <default>
@@ -117,6 +137,11 @@
117
  <payment_action>authorize</payment_action>
118
  <allowspecific>0</allowspecific>
119
  </j2tpayplug>
120
- </payment>
 
 
 
 
 
121
  </default>
122
  </config>
2
  <config>
3
  <modules>
4
  <J2t_Payplug>
5
+ <version>1.0.1</version>
6
  </J2t_Payplug>
7
  </modules>
8
 
102
  </j2tpayplug>
103
  </modules>
104
  </translate>
105
+
106
+ <layout>
107
+ <updates>
108
+ <j2t_all module="j2tpayplug">
109
+ <file>j2tpayplug.xml</file>
110
+ </j2t_all>
111
+ </updates>
112
+ </layout>
113
+
114
+ <events>
115
+ <controller_action_predispatch>
116
+ <observers>
117
+ <j2tpayplug_predispatch>
118
+ <class>J2t_Payplug_Model_Observer</class>
119
+ <method>preDispatch</method>
120
+ </j2tpayplug_predispatch>
121
+ </observers>
122
+ </controller_action_predispatch>
123
+ </events>
124
+
125
  </adminhtml>
126
 
127
  <default>
137
  <payment_action>authorize</payment_action>
138
  <allowspecific>0</allowspecific>
139
  </j2tpayplug>
140
+ </payment>
141
+ <system>
142
+ <j2t_all>
143
+ <feed_url_j2t>j2t-design.net/notifications.rss</feed_url_j2t>
144
+ </j2t_all>
145
+ </system>
146
  </default>
147
  </config>
app/code/community/J2t/Payplug/etc/system.xml CHANGED
@@ -1,6 +1,61 @@
1
  <?xml version="1.0"?>
2
  <config>
3
- <sections>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  <payment>
5
  <groups>
6
  <j2tpayplug translate="label" module="paygate">
1
  <?xml version="1.0"?>
2
  <config>
3
+ <tabs>
4
+ <j2t_all>
5
+ <label>J2T Modules</label>
6
+ <class>j2t-all-area</class>
7
+ <sort_order>100</sort_order>
8
+ </j2t_all>
9
+ </tabs>
10
+ <sections>
11
+ <j2t_all translate="label comment" module="j2tpayplug">
12
+ <tab>j2t_all</tab>
13
+ <class>j2t-all-tab</class>
14
+ <label>Our Products...</label>
15
+ <frontend_type>text</frontend_type>
16
+ <sort_order>1000</sort_order>
17
+ <show_in_default>1</show_in_default>
18
+ <show_in_website>1</show_in_website>
19
+ <show_in_store>1</show_in_store>
20
+ <groups>
21
+ <default translate="label comment" module="j2tpayplug">
22
+ <label>J2T DESIGN</label>
23
+
24
+ <comment><![CDATA[
25
+ <script type="text/javascript">
26
+ document.observe("dom:loaded", function() {
27
+ $$('.content-header .form-buttons').invoke('hide');
28
+ $$('.middle .main-col-inner')[0].style.height = '1400px';
29
+ var url_j2t = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'www.j2t-design.net/index.php/j2t-products?limit=25';
30
+ $$('.middle .entry-edit')[0].replace('<iframe src="'+url_j2t+'" style="width:100%; height:1400px; border:none;"></iframe>');
31
+ });
32
+ </script>
33
+ ]]>
34
+ </comment>
35
+
36
+
37
+ <frontend_type>text</frontend_type>
38
+ <sort_order>10</sort_order>
39
+ <show_in_default>1</show_in_default>
40
+ <show_in_website>1</show_in_website>
41
+ <show_in_store>1</show_in_store>
42
+
43
+ <fields>
44
+ <j2t_all translate="label">
45
+ <label>All Modules</label>
46
+ <frontend_type>select</frontend_type>
47
+ <source_model>adminhtml/system_config_source_yesno</source_model>
48
+ <sort_order>10</sort_order>
49
+ <show_in_default>1</show_in_default>
50
+ <show_in_website>1</show_in_website>
51
+ <show_in_store>1</show_in_store>
52
+ <comment><![CDATA[Activate/deactivate all modules.]]></comment>
53
+ </j2t_all>
54
+ </fields>
55
+ </default>
56
+
57
+ </groups>
58
+ </j2t_all>
59
  <payment>
60
  <groups>
61
  <j2tpayplug translate="label" module="paygate">
app/design/adminhtml/default/default/layout/{j2t_all.xml → j2tpayplug.xml} RENAMED
@@ -3,7 +3,7 @@
3
  <default>
4
  <reference name="head">
5
  <action method="addCss">
6
- <name>j2t_all_admin.css</name>
7
  </action>
8
  </reference>
9
  </default>
3
  <default>
4
  <reference name="head">
5
  <action method="addCss">
6
+ <name>j2t_all_admin_1.css</name>
7
  </action>
8
  </reference>
9
  </default>
app/design/frontend/base/default/template/j2tpayplug/form.phtml CHANGED
@@ -30,4 +30,12 @@
30
  <?php echo $this->__('You will be redirected to our secure payment page when you place an order.') ?>
31
  </li>
32
  </ul>
 
 
 
 
 
 
 
 
33
 
30
  <?php echo $this->__('You will be redirected to our secure payment page when you place an order.') ?>
31
  </li>
32
  </ul>
33
+ <ul>
34
+ <li>
35
+ <div style="padding:10px 15px 15px;">
36
+ <img src="<?php echo Mage::getBaseUrl(Mage_Core_Model_Store::URL_TYPE_MEDIA)?>icon_accepted_cards_payplug.gif" alt="<?php echo $this->__('Payment by visa or mastercard'); ?>"><br>
37
+ </div>
38
+ </li>
39
+ </ul>
40
+
41
 
app/etc/modules/J2t_All.xml DELETED
@@ -1,9 +0,0 @@
1
- <?xml version="1.0"?>
2
- <config>
3
- <modules>
4
- <J2t_All>
5
- <active>true</active>
6
- <codePool>community</codePool>
7
- </J2t_All>
8
- </modules>
9
- </config>
 
 
 
 
 
 
 
 
 
media/icon_accepted_cards_payplug.gif ADDED
Binary file
package.xml CHANGED
@@ -1,18 +1,18 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>J2t_Payplug</name>
4
- <version>1.0.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/OSL-3.0">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>PayPlug payment gateway</summary>
10
  <description>It allows to pay with PayPlug</description>
11
- <notes>First stable release</notes>
12
  <authors><author><name>J2T Design</name><user>j2tdesign</user><email>j2tdesign.net@gmail.com</email></author></authors>
13
- <date>2014-09-18</date>
14
- <time>13:55:28</time>
15
- <contents><target name="magecommunity"><dir name="J2t"><dir name="Payplug"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Accountdetails.php" hash="c89acdccd51f392dac8dfd032013683f"/></dir></dir></dir><file name="Form.php" hash="0c89710b2d4e94d76e9cc4b37ae3e7a6"/><file name="Info.php" hash="6e5e03ae417efe6d538b6437d5c99f87"/></dir><dir name="Helper"><file name="Data.php" hash="123d5de46cd1577e867e8ab9b0236d09"/></dir><dir name="Model"><file name="Observer.php" hash="791b10367d4ab48516f8ade14ff40d28"/><file name="PaymentMethod.php" hash="ecdb9dddcaaac90b80e5df92690b8d4a"/></dir><dir name="controllers"><file name="PaymentController.php" hash="195a5069f5041ba5a5c528ccd9df5791"/></dir><dir name="etc"><file name="config.xml" hash="a2334cdfa9f89f4d1e63d03aeeaa05f7"/><file name="system.xml" hash="774d4d10a7ca1233433f479a055547a4"/></dir><dir name="sql"><dir name="j2tpayplug_setup"><file name="install-1.0.0.php" hash="38cd84e5305bf53bca042f3a325523e5"/></dir></dir></dir><dir name="All"><dir name="Helper"><file name="Data.php" hash="d2bfe4933ead5fff4cf7e53630a2334e"/></dir><dir name="Model"><file name="Feed.php" hash="7cfa1539718432ba29d5577324bb5198"/><file name="Observer.php" hash="d16d9695e40a1a32dfa226cccfd48acb"/></dir><dir name="etc"><file name="config.xml" hash="78c3e36e2d45ee41bdde7410719f5ef7"/><file name="system.xml" hash="bd1826f4925482a0f925c74e0fd2b214"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="j2tpayplug"><file name="form.phtml" hash="cacf102de2ad4d183c502ad85d309439"/><file name="info.phtml" hash="7270ac2591cb0ad18915d8f5e92bef69"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="j2t_all.xml" hash="c5f6935a0a162251d0c1f97e3eee6669"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="J2t_Payplug.xml" hash="dccffdae1d3e6bae6c2e01ed7ec0cff3"/><file name="J2t_All.xml" hash="3c85420d01af2023bcf8fa9df2f9144a"/></dir></target><target name="magelocale"><dir/></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><file name="j2t_all_admin.css" hash="0c63600f49bab11eb3aafeea2ca56e7d"/><dir name="images"><file name="j2t_all.png" hash="19abc9040d74479f19eeb0c686f84766"/><dir name="j2t"><file name="ajax_cart.png" hash="e0c22079854b8136b9688b477c5f241a"/><file name="ajax_cart_2.png" hash="b14283c9f04c71af1e71342b3a745b4d"/><file name="auto_add.png" hash="bb1b750d8acd3c64e340fc5e0de036d8"/><file name="color_swatch.png" hash="d02daad32dc80679e462992748083ee8"/><file name="discountlabel.png" hash="f88b3d6c9ec76e3a2e6a2b0d8a3509b4"/><file name="gift_voucher.png" hash="6a62554c30594c35098535b862b447de"/><file name="gift_wrap.png" hash="9ace79eba94be172155e849e99a4e7f6"/><file name="one_checkout.png" hash="ba5594eea9cb7191079bb934eed9d10d"/><file name="product_hold.png" hash="3302cb665ec22ead4ef038da9ee07ac6"/><file name="productpreview.png" hash="d1117c9a889605bbaf0a5fddd92cd284"/><file name="reward_points.png" hash="8c2b307404c81cfdfc4e7669142d03b0"/><file name="sandbox.png" hash="8be94832209eb01689edc0d2b4cdee2a"/><file name="social_connect.png" hash="1492edf61ba7966d2069d7f4d3801300"/><file name="support.png" hash="ad077c49e123d2616ebd314425a7f646"/></dir></dir></dir></dir></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>J2t_Payplug</name>
4
+ <version>1.0.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/OSL-3.0">OSL v3.0</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>PayPlug payment gateway</summary>
10
  <description>It allows to pay with PayPlug</description>
11
+ <notes>Visa and Mastercard login insertion</notes>
12
  <authors><author><name>J2T Design</name><user>j2tdesign</user><email>j2tdesign.net@gmail.com</email></author></authors>
13
+ <date>2014-09-22</date>
14
+ <time>10:23:54</time>
15
+ <contents><target name="magecommunity"><dir name="J2t"><dir name="Payplug"><dir name="Block"><dir name="Adminhtml"><dir name="System"><dir name="Config"><file name="Accountdetails.php" hash="c89acdccd51f392dac8dfd032013683f"/></dir></dir></dir><file name="Form.php" hash="0c89710b2d4e94d76e9cc4b37ae3e7a6"/><file name="Info.php" hash="6e5e03ae417efe6d538b6437d5c99f87"/></dir><dir name="Helper"><file name="Data.php" hash="123d5de46cd1577e867e8ab9b0236d09"/></dir><dir name="Model"><file name="Feed.php" hash="a7a040e81827020e74f22f760b8f3f64"/><file name="Observer.php" hash="6d67e04bd3fd33e44c8381e64d5e9682"/><file name="PaymentMethod.php" hash="ecdb9dddcaaac90b80e5df92690b8d4a"/></dir><dir name="controllers"><file name="PaymentController.php" hash="195a5069f5041ba5a5c528ccd9df5791"/></dir><dir name="etc"><file name="config.xml" hash="78a4ccb547702fd6b4f07c1fa116f41b"/><file name="system.xml" hash="143b39d210b839d0c0503a5be6c2bd9d"/></dir><dir name="sql"><dir name="j2tpayplug_setup"><file name="install-1.0.0.php" hash="38cd84e5305bf53bca042f3a325523e5"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="j2tpayplug"><file name="form.phtml" hash="6edeec68d52f962cfe43b703d9925302"/><file name="info.phtml" hash="7270ac2591cb0ad18915d8f5e92bef69"/></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="j2tpayplug.xml" hash="b4f4d0cbe73cbd00bff554680f531741"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="J2t_Payplug.xml" hash="dccffdae1d3e6bae6c2e01ed7ec0cff3"/></dir></target><target name="magelocale"><dir/></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><file name="j2t_all_admin_1.css" hash="e55ce76476696ccf371b335c37af3bc5"/><dir name="images"><file name="j2t_all_1.png" hash="19abc9040d74479f19eeb0c686f84766"/></dir></dir></dir></dir></target><target name="magemedia"><dir name="."><file name="icon_accepted_cards_payplug.gif" hash="5270a1ef6a85f679504849cdb1dccb2a"/></dir></target></contents>
16
  <compatible/>
17
  <dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
18
  </package>
skin/adminhtml/default/default/images/j2t/ajax_cart.png DELETED
Binary file
skin/adminhtml/default/default/images/j2t/ajax_cart_2.png DELETED
Binary file
skin/adminhtml/default/default/images/j2t/auto_add.png DELETED
Binary file
skin/adminhtml/default/default/images/j2t/color_swatch.png DELETED
Binary file
skin/adminhtml/default/default/images/j2t/discountlabel.png DELETED
Binary file
skin/adminhtml/default/default/images/j2t/gift_voucher.png DELETED
Binary file
skin/adminhtml/default/default/images/j2t/gift_wrap.png DELETED
Binary file
skin/adminhtml/default/default/images/j2t/one_checkout.png DELETED
Binary file
skin/adminhtml/default/default/images/j2t/product_hold.png DELETED
Binary file
skin/adminhtml/default/default/images/j2t/productpreview.png DELETED
Binary file
skin/adminhtml/default/default/images/j2t/reward_points.png DELETED
Binary file
skin/adminhtml/default/default/images/j2t/sandbox.png DELETED
Binary file
skin/adminhtml/default/default/images/j2t/social_connect.png DELETED
Binary file
skin/adminhtml/default/default/images/j2t/support.png DELETED
Binary file
skin/adminhtml/default/default/images/{j2t_all.png → j2t_all_1.png} RENAMED
File without changes
skin/adminhtml/default/default/j2t_all_admin.css DELETED
@@ -1,78 +0,0 @@
1
- ul.tabs a.j2t-all-tab span, ul.tabs a.j2t-all-tab:hover span {
2
- background: url("./images/j2t_all.png") no-repeat scroll 0 0 transparent;
3
- height: 0;
4
- overflow: hidden;
5
- padding: 21px 0 0;
6
- width: 192px;
7
- }
8
-
9
- ul.tabs a.j2t-all-tab, ul.tabs a.j2t-all-tab:hover {
10
- background: url("../../images/tabs_span_bg.gif") repeat-x scroll 0 100% transparent;
11
- border-bottom: medium none;
12
- padding: 0.5em 0.5em 0.28em 1.5em;
13
- }
14
-
15
- ul.tabs a.j2t-ajaxcart-module span, ul.tabs a.j2t-ajaxcart-module:hover span {
16
- background: url("./images/j2t/ajax_cart.png") no-repeat scroll 0 0 transparent;
17
- padding: 0 20px 0;
18
- }
19
- ul.tabs a.j2t-rewardpoints-module span, ul.tabs a.j2t-rewardpoints-module:hover span {
20
- background: url("./images/j2t/reward_points.png") no-repeat scroll 0 0 transparent;
21
- padding: 0 20px 0;
22
- }
23
- ul.tabs a.j2t-autoadd-module span, ul.tabs a.j2t-autoadd-module:hover span {
24
- background: url("./images/j2t/auto_add.png") no-repeat scroll 0 0 transparent;
25
- padding: 0 20px 0;
26
- }
27
- ul.tabs a.j2t-onecheckout-module span, ul.tabs a.j2t-onecheckout-module:hover span {
28
- background: url("./images/j2t/one_checkout.png") no-repeat scroll 0 0 transparent;
29
- padding: 0 20px 0;
30
- }
31
-
32
- ul.tabs a.j2t-socialconnect-module span, ul.tabs a.j2t-socialconnect-module:hover span {
33
- background: url("./images/j2t/social_connect.png") no-repeat scroll 0 0 transparent;
34
- padding: 0 20px 0;
35
- }
36
-
37
- ul.tabs a.j2t-producthold-module span, ul.tabs a.j2t-producthold-module:hover span {
38
- background: url("./images/j2t/product_hold.png") no-repeat scroll 0 0 transparent;
39
- padding: 0 20px 0;
40
- }
41
-
42
- ul.tabs a.j2t-giftwrap-module span, ul.tabs a.j2t-giftwrap-module:hover span {
43
- background: url("./images/j2t/gift_wrap.png") no-repeat scroll 0 0 transparent;
44
- padding: 0 20px 0;
45
- }
46
-
47
- ul.tabs a.j2t-giftvoucher-module span, ul.tabs a.j2t-giftvoucher-module:hover span {
48
- background: url("./images/j2t/gift_voucher.png") no-repeat scroll 0 0 transparent;
49
- padding: 0 20px 0;
50
- }
51
-
52
- ul.tabs a.j2t-ajaxcart-module, ul.tabs a.j2t-ajaxcart-module:hover,
53
- ul.tabs a.j2t-rewardpoints-module, ul.tabs a.j2t-rewardpoints-module:hover,
54
- ul.tabs a.j2t-autoadd-module, ul.tabs a.j2t-autoadd-module:hover,
55
- ul.tabs a.j2t-onecheckout-module, ul.tabs a.j2t-onecheckout-module:hover,
56
- ul.tabs a.j2t-socialconnect-module, ul.tabs a.j2t-socialconnect-module:hover,
57
- ul.tabs a.j2t-producthold-module, ul.tabs a.j2t-producthold-module:hover,
58
- ul.tabs a.j2t-giftwrap-module, ul.tabs a.j2t-giftwrap-module:hover,
59
- ul.tabs a.j2t-giftvoucher-module, ul.tabs a.j2t-giftvoucher-module:hover
60
- {
61
- padding: 0.5em 0.5em 0.28em 1.5em;
62
- border-bottom: dotted 1px #c0c0c0;
63
- }
64
-
65
- ul.tabs a.j2t-ajaxcart-module.active, ul.tabs a.j2t-ajaxcart-module.active:hover,
66
- ul.tabs a.j2t-rewardpoints-module.active, ul.tabs a.j2t-rewardpoints-module.active:hover,
67
- ul.tabs a.j2t-autoadd-module.active, ul.tabs a.j2t-autoadd-module.active:hover,
68
- ul.tabs a.j2t-onecheckout-module.active, ul.tabs a.j2t-onecheckout-module.active:hover,
69
- ul.tabs a.j2t-all-tab.active, ul.tabs a.j2t-all-tab.active:hover,
70
- ul.tabs a.j2t-socialconnect-module.active, ul.tabs a.j2t-socialconnect-module.active:hover,
71
- ul.tabs a.j2t-producthold-module.active, ul.tabs a.j2t-producthold-module.active:hover,
72
- ul.tabs a.j2t-giftwrap-module.active, ul.tabs a.j2t-giftwrap-module.active:hover,
73
- ul.tabs a.j2t-giftvoucher-module.active, ul.tabs a.j2t-giftvoucher-module.active:hover
74
- {
75
- background-color: #FFFFFF;
76
- }
77
-
78
- ul.tabs a.j2t-all-tab, ul.tabs a.j2t-all-tab {border:none;}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
skin/adminhtml/default/default/j2t_all_admin_1.css ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ ul.tabs a.j2t-all-tab span, ul.tabs a.j2t-all-tab:hover span {
2
+ background: url("./images/j2t_all_1.png") no-repeat scroll 0 0 transparent;
3
+ height: 0;
4
+ overflow: hidden;
5
+ padding: 21px 0 0;
6
+ width: 192px;
7
+ }
8
+
9
+ ul.tabs a.j2t-all-tab, ul.tabs a.j2t-all-tab {border:none;}