Welcome Guest, Not a member yet? Register   Sign In
Another User Management Auth ACL Fancy Stuff Something Something library
#7

[eluser]darkhouse[/eluser]
I just wanted to mention that I finally used this class the other day, and it worked great. I used it for applying different shipping adapters to a store that I'm working on. It made life so much easier, at first I wasn't sure how I'd tackle it, but I remembered this class, and that was the solution.

There are a few syntax and spelling errors, but they're minor, and once they're fixed, it all works great. One of those issues was this line:
Code:
$this->adapter = new $class_name($this->_raw_config[strtolower($adapter)]);
Since _raw_config isn't set, I wasn't sure what it was supposed to be referencing, but changing it to the following works fine.
Code:
$this->adapter = new $class_name();

I was able to load config files for each of my shipping adapters as they all have different settings and requirements, and I was able to keep those config files in a shipping folder within the config folder, just for organization.

Again, thanks for this great work, I don't know what I would've done without it.


Messages In This Thread
Another User Management Auth ACL Fancy Stuff Something Something library - by El Forum - 12-24-2009, 10:27 AM



Theme © iAndrew 2016 - Forum software by © MyBB