Re: Anyone used ezComponents successfully as a Vendor class with CakePHP?

2009-10-27 Thread BrendonKoz
I should probably follow up, just in case I wasn't completely clear (I was reading this over trying to remember what I had done in regards to eZ Component integration as I am now at a point in the project where I can try to tackle this). CakePHP does a lot. At its core (imho) it is a wrapper to

Re: Anyone used ezComponents successfully as a Vendor class with CakePHP?

2009-10-16 Thread BrendonKoz
That's not a dumb question, Keith. AFAIK, CakePHP expects to have the core available to it at all times, and the core expects calls and routing via the MVC. Even the plugins, behaviors, components, and other 3rd party extended code is doing just that, extending Cake classes. I haven't tried

Re: Anyone used ezComponents successfully as a Vendor class with CakePHP?

2009-10-16 Thread Kepper
Thanks, Brendon. That's exactly what I needed to know. -Keith On Oct 16, 11:07 am, BrendonKoz brendon...@hotmail.com wrote: That's not a dumb question, Keith. AFAIK, CakePHP expects to have the core available to it at all times, and the core expects calls and routing via the MVC.  Even the

Re: Anyone used ezComponents successfully as a Vendor class with CakePHP?

2009-09-23 Thread Kepper
Dumb question: Is it possible to use CakePHP like you would EZ Components?Could you load the libraries and make calls without using the MVC environment? Thanks, Keith On Aug 29, 9:43 am, Rick will...@gmail.com wrote: You should be able to do this quite easily.  Put the ezcomponents dir

Re: Anyone used ezComponents successfully as a Vendor class with CakePHP?

2009-09-03 Thread Rick
Please post your successful results. Rick On Sep 2, 6:04 pm, Brendon Kozlowski (Realm) brendon...@hotmail.com wrote: Random thought - I'll be trying this tomorrow or sometime next week, but...  Would the autoload file be able to be called as a vendor include as well?  So long as I call it

Re: Anyone used ezComponents successfully as a Vendor class with CakePHP?

2009-09-02 Thread Brendon Kozlowski (Realm)
Thanks, Rick. I was trying to determine if there was an easier way to add it, but after talking with some of the developers in their IRC chat, I couldn't think of any as the call to the autoload is required. I was trying to think of a way to package it all up, such as in a plugin or something

Re: Anyone used ezComponents successfully as a Vendor class with CakePHP?

2009-09-02 Thread Brendon Kozlowski (Realm)
Random thought - I'll be trying this tomorrow or sometime next week, but... Would the autoload file be able to be called as a vendor include as well? So long as I call it first, I'm wondering if that would possibly solve the issue. An autoloader would still have to be customized for all ez

Re: Anyone used ezComponents successfully as a Vendor class with CakePHP?

2009-08-29 Thread Rick
You should be able to do this quite easily. Put the ezcomponents dir into the Vendor then add the ezc autoload require in the config core.php. Rick On Aug 28, 1:27 pm, BrendonKoz brendon...@hotmail.com wrote: I'm currently looking to use ezComponent's ezcGraph library within a CakePHP

Anyone used ezComponents successfully as a Vendor class with CakePHP?

2009-08-28 Thread BrendonKoz
I'm currently looking to use ezComponent's ezcGraph library within a CakePHP project, but I've noticed ezComponents specify a requirement to have their base library loaded. (Is this similar to Zend now? Last I knew Zend didn't require a loader to use it as a Vendor.) Rather than rushing in head