Skip to content

webcomm/addressfinder-magento-1

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AddressFinder for Magento 1

Installation

There are two supported ways to install the module, either via Composer or manually.

Installation Using Composer

To install the AddresssFinder module for Magento 1, simply run:

composer require addressfinder/module-magento1

Tip: Don't forget to enable symlinks in your Magento installation to enable Composer installation to work. This isn't specific to AddressFinder, but a common "gotcha". Read more.

Manual Installation

Firstly, download the latest ZIP, then merge the following files/directories into your existing project:

app/code/community/AddressFinder
app/design/frontend/base/default/layout/addressfinder.xml
app/design/frontend/base/default/template/addressfinder
app/etc/modules/AddressFinder_AddressFinder.xml
js/addressfinder

Clear Cache

After installation, it's important to clear any caches.

Setup & Usage

Follow the user guide on the AddressFinder website:

Tmeplates & Events

The following templates are exposed:

  1. app/design/frontend/base/default/template/addressfinder/checkout/onepage/billing.phtml - sets up AddressFinder on the billing step of the checkout.
  2. app/design/frontend/base/default/template/addressfinder/checkout/onepage/shipping.phtml - sets up AddressFinder on the shpping step of hte checkout.
  3. app/design/frontend/base/default/template/addressfinder/customer/address/form.phtml - sets up AddressFinder on the customer address management page.

Further, a number of JavaScript events are fired. We've identified the important events:

  • addressfinder:magento:loaded - when AddressFinder has loaded, used by frontend templates to initialise
  • addressfinder:magento:initialising
  • addressfinder:magento:initialised
  • addressfinder:magento:enabling - when AddressFinder is being enabled as the country is changed (one widget per country)
  • addressfinder:magento:enabled
  • addressfinder:magento:disabling - when AddressFinder is being disabled as the country is changed (one widget per country)
  • addressfinder:magento:disabled
  • addressfinder:magento:refreshing
  • addressfinder:magento:refreshed
  • addressfinder:magento:provider:registering - when a provider is being registered (AU or NZ)
  • addressfinder:magento:widget:registering - when a widget is being registered for a provider (AU or NZ)
  • addressfinder:magento:result:select - when a result is selected
  • addressfinder:magento:value - when a value is being set on for the given metadata key, e.g. city to Sydney.
  • addressfinder:magento:transform

To attach functionality to these, simply add observers as per the Prototype 1.7 documentatio:

document.observe('addressfinder:magento:result:select', function (event) {
    // The payload of the event is located in event.memo

    // console.log(event.memo.fullAddress);
    // console.log(event.memo.metaData);
});

Module Development

Installation

To begin development, you will need a copy of Magento installed using Composer. Create the following composer.json file in a working directory:

{
    "repositories": {
        "firegento": {
            "type": "composer",
            "url": "https://packages.firegento.com"
        }
    },
    "require": {
        "magento-hackathon/magento-composer-installer": "^3.1",
        "aydin-hassan/magento-core-composer-installer": "^1.5",
        "firegento/magento": "v1.9.3.10",
    },
    "minimum-stability": "dev",
    "prefer-stable": true,
    "extra": {
        "magento-root-dir": "./public"
    }
}

After you have created this file, simply run composer install to setup your Magento 1.9 environment. Of course, you can substitute any version of Magento into the file you've created, we're just using the latest.

From here, clone the repository to a location (such as inside your newly created Magento project):

git clone https://github.com/AbleTech/addressfinder-magento-1.git

You may now use a feature of Composer to pull in the locally cloned repository as a Composer dependency. Simply update your composer.json file

{
    "repositories": {
        "firegento": {
            "type": "composer",
            "url": "https://packages.firegento.com"
        },
        "addressfinder": {
            "type": "path",
            "url": "./module-magento1"
        }
    },
    "require": {
        "magento-hackathon/magento-composer-installer": "^3.1",
        "aydin-hassan/magento-core-composer-installer": "^1.5",
        "firegento/magento": "v1.9.3.10",
        "addressfinder/module-magento1": "*"
    },
    "minimum-stability": "dev",
    "prefer-stable": true,
    "extra": {
        "magento-root-dir": "./public"
    }
}

You can now make changes in the module and they will reflect in your Magento store.

Compilng assets

In order to compile assets, simply run (from within the repository):

npm install
npm run dev

There's also the following tasks which may be of use:

# Minitfy assets
npm run production

# Watch and automatically recompile

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 53.8%
  • PHP 25.3%
  • HTML 20.9%