Undocumented Loader::helper('lists/countries'); ????
PermalinkCan someone tell me what this does or how this works?
The only docs I can find say "helper" is shorthand to load a class instance. I can find no Class Lists or Class countries and nothing with a member GetCountries() in any of the source.
This came from code in concrete/attributes/address if that helps. I am trying to create my own attribute set that allows the user to select from <select> controls like State/Provence in the address attribute.
Thanks,
Sean

Also Loader::helper is deprecated so it may be difficult to use, its been replaced by Core::make, so the following code would be replacement:
Core::make('helper/lists/countries')
Told me everything I was after!
http://archebian.org/videos/ec-c5-namespaces.mp4...
But you've already figured it out!