Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Latest commit

 

History

History
25 lines (18 loc) · 783 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 783 Bytes

Analogue plugin for CakePHP 1.3+

Renames, or "maps", helpers prior to rendering so that you can easily replace helpers with your extended, or updated version.

Installation

  • Download the plugin

      $ cd /path/to/your/app/plugins && git clone git://github.com/joebeeson/analogue.git
    
  • Add the helper to your $helpers and configure it there

      public $helpers = array(
         'Analogue.Analogue' => array(
            array(
             'helper' => 'MyHtml',
             'rename' => 'Html'
            ),array(
             'helper' => 'MyForm',
             'rename' => 'Form'
            )
        )
      );
    

This will take the helpers, MyHtmlHelper and MyFormHelper and remap them to the Html and Form variables when rendering begins.