ColdBox [BE]

Is it possible to override the html variables created by ColdBox with a custom plugin that I created?

i.e. I want to extend the HTMLHelper plugin that is available site/system wide…

I feel like this is really obvious and easy but I can’t seem to get it to work.

Jeremy R. DeYoung
615.261.8201jeremy.deyoung@lunarfly.comLunarFly.com

in the config:

coldboxExtensionsLocation = “path.to.extensions.directory”

your plugin component declare:

component singleton=true accessors=true extends=“coldbox_3_5_3.system.plugins.HTMLHelper”{
public HTMLHelper function init(controller){
super.init(arguments.controller);

return this;
}
}

absolutely brilliant Aaron! And as always — LUIS you are always 1k steps ahead of what I need…YOU GUYS ROCK!