Version Notes
Correction of minor typo.
Download this release
Release Info
| Developer | Lexel Software |
| Extension | Lexel_UkAddressFinder |
| Version | 0.2.1 |
| Comparing to | |
| See all releases | |
Code changes from version 0.2.0 to 0.2.1
app/code/community/Lexel/UkAddressFinder/controllers/IndexController.php
CHANGED
|
@@ -22,9 +22,9 @@ class Lexel_UkAddressFinder_IndexController extends Mage_Core_Controller_Front_A
|
|
| 22 |
public function billingaddresslistfinderAction()
|
| 23 |
{
|
| 24 |
$postCode = $this->getRequest()->getPost('postcode');
|
| 25 |
-
$userName = Mage::getStoreConfig('addressfinder/
|
| 26 |
-
$password = Mage::getStoreConfig('addressfinder/
|
| 27 |
-
$licenseKey = Mage::getStoreConfig('addressfinder/
|
| 28 |
|
| 29 |
/* call to lexel PAF API via curl */
|
| 30 |
|
|
@@ -54,9 +54,9 @@ class Lexel_UkAddressFinder_IndexController extends Mage_Core_Controller_Front_A
|
|
| 54 |
public function billingexactaddressfinderAction()
|
| 55 |
{
|
| 56 |
$addressId = $this->getRequest()->getPost('addressid');
|
| 57 |
-
$userName = Mage::getStoreConfig('addressfinder/
|
| 58 |
-
$password = Mage::getStoreConfig('addressfinder/
|
| 59 |
-
$licenseKey = Mage::getStoreConfig('addressfinder/
|
| 60 |
|
| 61 |
/* call to lexel PAF API via curl */
|
| 62 |
|
|
@@ -93,9 +93,9 @@ class Lexel_UkAddressFinder_IndexController extends Mage_Core_Controller_Front_A
|
|
| 93 |
public function shippingaddresslistfinderAction()
|
| 94 |
{
|
| 95 |
$postCode = $this->getRequest()->getPost('postcode');
|
| 96 |
-
$userName = Mage::getStoreConfig('addressfinder/
|
| 97 |
-
$password = Mage::getStoreConfig('addressfinder/
|
| 98 |
-
$licenseKey = Mage::getStoreConfig('addressfinder/
|
| 99 |
|
| 100 |
/* call to lexel PAF API via curl */
|
| 101 |
|
|
@@ -125,9 +125,9 @@ class Lexel_UkAddressFinder_IndexController extends Mage_Core_Controller_Front_A
|
|
| 125 |
public function shippingexactaddressfinderAction()
|
| 126 |
{
|
| 127 |
$addressId = $this->getRequest()->getPost('addressid');
|
| 128 |
-
$userName = Mage::getStoreConfig('addressfinder/
|
| 129 |
-
$password = Mage::getStoreConfig('addressfinder/
|
| 130 |
-
$licenseKey = Mage::getStoreConfig('addressfinder/
|
| 131 |
|
| 132 |
/* call to lexel PAF API via curl */
|
| 133 |
|
| 22 |
public function billingaddresslistfinderAction()
|
| 23 |
{
|
| 24 |
$postCode = $this->getRequest()->getPost('postcode');
|
| 25 |
+
$userName = Mage::getStoreConfig('addressfinder/license/username'); // get username from backend system configuration
|
| 26 |
+
$password = Mage::getStoreConfig('addressfinder/license/password'); // get password from backend system configuration
|
| 27 |
+
$licenseKey = Mage::getStoreConfig('addressfinder/license/license_key'); // get license key from backend system configuration
|
| 28 |
|
| 29 |
/* call to lexel PAF API via curl */
|
| 30 |
|
| 54 |
public function billingexactaddressfinderAction()
|
| 55 |
{
|
| 56 |
$addressId = $this->getRequest()->getPost('addressid');
|
| 57 |
+
$userName = Mage::getStoreConfig('addressfinder/license/username'); // get username from backend system configuration
|
| 58 |
+
$password = Mage::getStoreConfig('addressfinder/license/password'); // get password from backend system configuration
|
| 59 |
+
$licenseKey = Mage::getStoreConfig('addressfinder/license/license_key'); // get license key from backend system configuration
|
| 60 |
|
| 61 |
/* call to lexel PAF API via curl */
|
| 62 |
|
| 93 |
public function shippingaddresslistfinderAction()
|
| 94 |
{
|
| 95 |
$postCode = $this->getRequest()->getPost('postcode');
|
| 96 |
+
$userName = Mage::getStoreConfig('addressfinder/license/username'); // get username from backend system configuration
|
| 97 |
+
$password = Mage::getStoreConfig('addressfinder/license/password'); // get password from backend system configuration
|
| 98 |
+
$licenseKey = Mage::getStoreConfig('addressfinder/license/license_key'); // get license key from backend system configuration
|
| 99 |
|
| 100 |
/* call to lexel PAF API via curl */
|
| 101 |
|
| 125 |
public function shippingexactaddressfinderAction()
|
| 126 |
{
|
| 127 |
$addressId = $this->getRequest()->getPost('addressid');
|
| 128 |
+
$userName = Mage::getStoreConfig('addressfinder/license/username'); // get username from backend system configuration
|
| 129 |
+
$password = Mage::getStoreConfig('addressfinder/license/password'); // get password from backend system configuration
|
| 130 |
+
$licenseKey = Mage::getStoreConfig('addressfinder/license/license_key'); // get license key from backend system configuration
|
| 131 |
|
| 132 |
/* call to lexel PAF API via curl */
|
| 133 |
|
package.xml
CHANGED
|
@@ -1,39 +1,37 @@
|
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Lexel_UkAddressFinder</name>
|
| 4 |
-
<version>0.2.
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License v3.0 (OSL-3.0)</license>
|
| 7 |
<channel>community</channel>
|
| 8 |
<extends/>
|
| 9 |
<summary>UK Address Finder - Increase conversions and reduce customer keystrokes by up to 80%. </summary>
|
| 10 |
-
<description
|
| 11 |

|
| 12 |
-
|
| 13 |

|
| 14 |
-
|
| 15 |

|
| 16 |
-
|
| 17 |

|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
<li>Flexible licensing - Monthly/Annual Licences available (Please contact us)</li>
|
| 23 |
-
</ul>
|
| 24 |

|
| 25 |
-
|
| 26 |

|
| 27 |
-
|
| 28 |

|
| 29 |
-
|
| 30 |

|
| 31 |
-
|
| 32 |
-
<notes>
|
| 33 |
<authors><author><name>Lexel Software</name><user>lexel_uk</user><email>helpdesk@lexel.co.uk</email></author><author><name>Zodiac Media</name><user>zodiac_media</user><email>info@zodiacmedia.co.uk</email></author></authors>
|
| 34 |
-
<date>2013-10-
|
| 35 |
-
<time>
|
| 36 |
-
<contents><target name="magecommunity"><dir name="Lexel"><dir name="UkAddressFinder"><dir name="Helper"><file name="Data.php" hash="0af50634eb3c8f98d33d6a99a7838e35"/></dir><dir name="controllers"><file name="IndexController.php" hash="
|
| 37 |
<compatible/>
|
| 38 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
| 39 |
</package>
|
| 1 |
<?xml version="1.0"?>
|
| 2 |
<package>
|
| 3 |
<name>Lexel_UkAddressFinder</name>
|
| 4 |
+
<version>0.2.1</version>
|
| 5 |
<stability>stable</stability>
|
| 6 |
<license uri="http://opensource.org/licenses/osl-3.0.php">Open Software License v3.0 (OSL-3.0)</license>
|
| 7 |
<channel>community</channel>
|
| 8 |
<extends/>
|
| 9 |
<summary>UK Address Finder - Increase conversions and reduce customer keystrokes by up to 80%. </summary>
|
| 10 |
+
<description>UK Address Finder
|
| 11 |

|
| 12 |
+
Lexel's Postcode Address Finder will allow your customer to just enter a postcode, press "Find Address" and then have a select box with pre-selected address's that match the postcode your customer has entered.
|
| 13 |

|
| 14 |
+
This extension increases conversions and reduces customer keystrokes meaning that there's less errors when entering address information.
|
| 15 |

|
| 16 |
+
Features
|
| 17 |

|
| 18 |
+
- Reduces customer keystrokes by up to 80%
|
| 19 |
+
- Reduces incorrect addresses saving you time on re-shipping items
|
| 20 |
+
- Faster checkout improving conversions
|
| 21 |
+
- Flexible licensing - Monthly/Annual Licences available (Please contact us)
|
|
|
|
|
|
|
| 22 |

|
| 23 |
+
Important Information
|
| 24 |

|
| 25 |
+
All you need to do is install the extension and then go to System -> Configuration -> Address Finder and follow the instructions.
|
| 26 |

|
| 27 |
+
The extension is free, however credits are not free and these need to be purchased through the Lexel website.
|
| 28 |

|
| 29 |
+
Please note we are unable to help with custom theme support.</description>
|
| 30 |
+
<notes>Correction of minor typo.</notes>
|
| 31 |
<authors><author><name>Lexel Software</name><user>lexel_uk</user><email>helpdesk@lexel.co.uk</email></author><author><name>Zodiac Media</name><user>zodiac_media</user><email>info@zodiacmedia.co.uk</email></author></authors>
|
| 32 |
+
<date>2013-10-16</date>
|
| 33 |
+
<time>08:03:02</time>
|
| 34 |
+
<contents><target name="magecommunity"><dir name="Lexel"><dir name="UkAddressFinder"><dir name="Helper"><file name="Data.php" hash="0af50634eb3c8f98d33d6a99a7838e35"/></dir><dir name="controllers"><file name="IndexController.php" hash="a371df2d3503377d2f52f1ee39f26dc1"/></dir><dir name="etc"><file name="config.xml" hash="f827020f3c358ec5264f24c906a76d31"/><file name="system.xml" hash="eaa085b4e0b606955a7e9a2934452261"/></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="addressfinder.xml" hash="8bd3513d5687823a670ab432274494bc"/></dir><dir name="template"><dir name="addressfinder"><file name="billing.phtml" hash="40c71cf08b16f61194a643aee7c82b41"/><file name="shipping.phtml" hash="71f27c04e9440c75a05a2ec58097f484"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Lexel_UkAddressFinder.xml" hash="9bbea2ea3a3f53770dcf3d4c15cfead6"/></dir></target></contents>
|
| 35 |
<compatible/>
|
| 36 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php></required></dependencies>
|
| 37 |
</package>
|
