taply - Version 1.1.6

Version Notes

bug fix

Download this release

Release Info

Developer taply
Extension taply
Version 1.1.6
Comparing to
See all releases


Code changes from version 1.1.5 to 1.1.6

app/code/local/Taply/Order/controllers/Taply/OrderController.php DELETED
@@ -1,7 +0,0 @@
1
- <?php
2
- class Taply_TaplyOrder_OrderController extends Mage_Core_Controller_Front_Action{
3
-
4
- public function refundAction($payment){
5
- echo "TEST";
6
- }
7
- }
 
 
 
 
 
 
 
app/code/local/Taply/Order/etc/config.xml DELETED
@@ -1,39 +0,0 @@
1
- <?xml version="1.0"?>
2
- <config>
3
- <modules>
4
- <Taply_Order>
5
- <version>1.1.1</version>
6
- </Taply_Order>
7
- </modules>
8
-
9
- <admin>
10
- <routers>
11
- <admintaply>
12
- <args>
13
- <use>admintaply</use>
14
- <module>Taply_Order</module>
15
- </args>
16
- </admintaply>
17
- </routers>
18
- </admin>
19
-
20
- <!-- <admin>
21
- <routers>
22
- <taply_paybutton_adminhtml>
23
- <use>taply</use>
24
- <args>
25
- <module>Taply_Paybutton_Adminhtml</module>
26
- <frontName>taply</frontName>
27
- </args>
28
- </taply_paybutton_adminhtml>
29
- </routers>
30
- </admin>-->
31
- <!-- <default>
32
- <payment>
33
- <taply>
34
- <active>1</active>
35
- <model>paybutton/payment</model>
36
- </taply>
37
- </payment>
38
- </default>-->
39
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/code/local/Taply/Order/etc/system_.xml DELETED
@@ -1,52 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <config>
3
- <sections>
4
- <payment>
5
- <groups>
6
- <taply translate="label">
7
- <label>Pay By Taply</label>
8
- <sort_order>770</sort_order>
9
- <show_in_default>1</show_in_default>
10
- <show_in_website>1</show_in_website>
11
- <show_in_store>1</show_in_store>
12
- <fields>
13
- <active translate="label">
14
- <label>Enabled</label>
15
- <frontend_type>select</frontend_type>
16
- <source_model>adminhtml/system_config_source_yesno</source_model>
17
- <sort_order>100</sort_order>
18
- <show_in_default>1</show_in_default>
19
- <show_in_website>1</show_in_website>
20
- <show_in_store>0</show_in_store>
21
- </active>
22
- <merchant_id>
23
- <label>Taply Store ID</label>
24
- <frontend_type>text</frontend_type>
25
- <sort_order>101</sort_order>
26
- <show_in_default>1</show_in_default>
27
- <show_in_website>1</show_in_website>
28
- <show_in_store>0</show_in_store>
29
- </merchant_id>
30
- <description>
31
- <label>Description</label>
32
- <frontend_type>text</frontend_type>
33
- <sort_order>102</sort_order>
34
- <show_in_default>1</show_in_default>
35
- <show_in_website>1</show_in_website>
36
- <show_in_store>0</show_in_store>
37
- </description>
38
- <view_type>
39
- <label>View Type</label>
40
- <frontend_type>select</frontend_type>
41
- <source_model>paybutton/viewtype</source_model>
42
- <sort_order>103</sort_order>
43
- <show_in_default>1</show_in_default>
44
- <show_in_website>1</show_in_website>
45
- <show_in_store>0</show_in_store>
46
- </view_type>
47
- </fields>
48
- </taply>
49
- </groups>
50
- </payment>
51
- </sections>
52
- </config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/code/local/Taply/Paybutton/Model/Payment.php CHANGED
@@ -13,7 +13,7 @@
13
  */
14
  class Taply_Paybutton_Model_Payment extends Mage_Payment_Model_Method_Abstract
15
  {
16
- const TAPLY_API_URL = "http://rc-api.paybytaply.com/payment/";
17
 
18
  protected $_code = 'taply';
19
 
13
  */
14
  class Taply_Paybutton_Model_Payment extends Mage_Payment_Model_Method_Abstract
15
  {
16
+ const TAPLY_API_URL = "http://api.taplycheckout.com/payment/";
17
 
18
  protected $_code = 'taply';
19
 
app/code/local/Taply/Paybutton/controllers/SuccessController.php CHANGED
@@ -1,6 +1,6 @@
1
  <?php
2
  class Taply_Paybutton_SuccessController extends Mage_Core_Controller_Front_Action{
3
- const TAPLY_API_URL = "https://api.paybytaply.com/payment/";
4
 
5
 
6
  protected $_methodType = 'taply';
@@ -219,4 +219,4 @@ class Taply_Paybutton_SuccessController extends Mage_Core_Controller_Front_Actio
219
  echo $e->getMessage();
220
  }
221
  }
222
- }
1
  <?php
2
  class Taply_Paybutton_SuccessController extends Mage_Core_Controller_Front_Action{
3
+ const TAPLY_API_URL = "https://api.taplycheckout.com/payment/";
4
 
5
 
6
  protected $_methodType = 'taply';
219
  echo $e->getMessage();
220
  }
221
  }
222
+ }
app/code/local/Taply/Paybutton/etc/system.xml CHANGED
@@ -4,7 +4,7 @@
4
  <payment>
5
  <groups>
6
  <taply translate="label">
7
- <label>Pay By Taply</label>
8
  <sort_order>770</sort_order>
9
  <show_in_default>1</show_in_default>
10
  <show_in_website>1</show_in_website>
4
  <payment>
5
  <groups>
6
  <taply translate="label">
7
+ <label>Taply</label>
8
  <sort_order>770</sort_order>
9
  <show_in_default>1</show_in_default>
10
  <show_in_website>1</show_in_website>
app/design/frontend/base/default/template/taply/.button.phtml.swp DELETED
Binary file
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>taply</name>
4
- <version>1.1.5</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
7
  <channel>community</channel>
@@ -11,9 +11,9 @@
11
  taply allows you to use Apple Pay for an incredibly fast, secure, and seamless online checkout. Go anywhere online that has the taply button, enter your mobile number, then use the taply app to complete the purchase using Touch ID.</description>
12
  <notes>bug fix</notes>
13
  <authors><author><name>taply</name><user>taply</user><email>admin@taplycheckout.com</email></author></authors>
14
- <date>2016-02-17</date>
15
- <time>10:04:11</time>
16
- <contents><target name="magelocal"><dir><dir name="Taply"><dir name="Order"><dir name="controllers"><dir name="Taply"><file name="OrderController.php" hash="00eedb8b49cfe8ae1aecba1c40e3f17a"/></dir></dir><dir name="etc"><file name="config.xml" hash="80129765898cac5c81f83739352317e1"/><file name="system_.xml" hash="520313dbaf29da8a44325f1a2880d30a"/></dir></dir><dir name="Paybutton"><dir name="Block"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><file name="View.php" hash="31dc5ad3ff90929a5adff81f6286d6cf"/></dir></dir></dir><dir name="Button"><file name="Pay.php" hash="7c751e6a0aa7e1e015e5dd58e4c8f7da"/></dir></dir><dir name="Helper"><file name="Data.php" hash="c8404ec959ddf4bf9fbee31fc2314d34"/></dir><dir name="Model"><file name="Payment.php" hash="f630057cc99ec86c542592a904055002"/><file name="Viewtype.php" hash="c39cf7f525e11ab1de3f10a939caf494"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Taply"><file name="OrderController.php" hash="5593f8a36002649d34f0c8e6b07ab4b6"/></dir></dir><file name="GetshippingController.php" hash="b9e020fe0cde148b6bf88a4d7f52c71d"/><file name="OrderController.php" hash="be686c5550ed8bc92340f3e9e5d7017b"/><file name="SuccessController.php" hash="db0ce352d1d7bce814b4024eeba88357"/></dir><dir name="etc"><file name="adminhtml.xml" hash="7001550ad892cd8ca7a0917a0f9bd0bd"/><file name="config.xml" hash="f5880f339e17e42056f842ce1c42e876"/><file name="system.xml" hash="520313dbaf29da8a44325f1a2880d30a"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Taply_Paybutton.xml" hash="2c4c33fa727a3fe1d863353583e1dfa0"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="taply.xml" hash="9e1f83fd9986d9f92a9c1d903bd1b22a"/></dir><dir name="template"><dir name="taply"><file name="button.phtml" hash="786ec1ea4b9e157f6881c426827d7cc2"/><file name=".button.phtml.swp" hash="6d63b6927997c58ca3db51e9f8fde631"/></dir></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="taply"><file name="taply.1.1.js" hash="84cbe3c8924bb5d3e0dfa947894a75e1"/><file name="taply.1.2.js" hash="6e51a9133ef535474cf54a6a5e9fc045"/></dir></dir></target></contents>
17
  <compatible/>
18
  <dependencies><required><php><min>5.4.0</min><max>5.6.999</max></php></required></dependencies>
19
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>taply</name>
4
+ <version>1.1.6</version>
5
  <stability>stable</stability>
6
  <license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License (OSL)</license>
7
  <channel>community</channel>
11
  taply allows you to use Apple Pay for an incredibly fast, secure, and seamless online checkout. Go anywhere online that has the taply button, enter your mobile number, then use the taply app to complete the purchase using Touch ID.</description>
12
  <notes>bug fix</notes>
13
  <authors><author><name>taply</name><user>taply</user><email>admin@taplycheckout.com</email></author></authors>
14
+ <date>2016-03-02</date>
15
+ <time>07:40:14</time>
16
+ <contents><target name="magelocal"><dir><dir name="Taply"><dir name="Paybutton"><dir name="Block"><dir name="Adminhtml"><dir name="Sales"><dir name="Order"><file name="View.php" hash="31dc5ad3ff90929a5adff81f6286d6cf"/></dir></dir></dir><dir name="Button"><file name="Pay.php" hash="7c751e6a0aa7e1e015e5dd58e4c8f7da"/></dir></dir><dir name="Helper"><file name="Data.php" hash="c8404ec959ddf4bf9fbee31fc2314d34"/></dir><dir name="Model"><file name="Payment.php" hash="d88045e2581327774d1b7c17d956f0c1"/><file name="Viewtype.php" hash="c39cf7f525e11ab1de3f10a939caf494"/></dir><dir name="controllers"><dir name="Adminhtml"><dir name="Taply"><file name="OrderController.php" hash="5593f8a36002649d34f0c8e6b07ab4b6"/></dir></dir><file name="GetshippingController.php" hash="b9e020fe0cde148b6bf88a4d7f52c71d"/><file name="OrderController.php" hash="be686c5550ed8bc92340f3e9e5d7017b"/><file name="SuccessController.php" hash="f74623e6625e512abc589d9cf39289a4"/></dir><dir name="etc"><file name="adminhtml.xml" hash="7001550ad892cd8ca7a0917a0f9bd0bd"/><file name="config.xml" hash="f5880f339e17e42056f842ce1c42e876"/><file name="system.xml" hash="912f3b31b57c82634b6d68c3b7784880"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Taply_Paybutton.xml" hash="2c4c33fa727a3fe1d863353583e1dfa0"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="taply.xml" hash="9e1f83fd9986d9f92a9c1d903bd1b22a"/></dir><dir name="template"><dir name="taply"><file name="button.phtml" hash="786ec1ea4b9e157f6881c426827d7cc2"/></dir></dir></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="taply"><file name="taply.1.1.js" hash="84cbe3c8924bb5d3e0dfa947894a75e1"/><file name="taply.1.2.js" hash="6e51a9133ef535474cf54a6a5e9fc045"/></dir></dir></target></contents>
17
  <compatible/>
18
  <dependencies><required><php><min>5.4.0</min><max>5.6.999</max></php></required></dependencies>
19
  </package>