Well as simple as it may look like, Could be a little hard for a person who is new to ZF. So probably an example for a module application and it's usage will be a plus. If anyone made something like that and would like to share, Please do. Just wondering the way other developers develop there application.
Thanks again for the info. Vince.
--
Vincent Gabriel.
Lead Developer, Senior Support.
Zend Certified Engineer.
Thanks again for the info. Vince.
On Tue, Feb 24, 2009 at 3:35 PM, Matthew Weier O'Phinney <matthew@zend.com> wrote:
-- vadim gavrilov <vadimg88@gmail.com> wrote(on Tuesday, 24 February 2009, 02:50 PM +0200):
> Ahh thanks, Was wondering how such feature was not implemented yet. Thanks forWell, the modular directory structure has been supported since 0.6.0,
> the update.
and front controller plugins have been supported since 0.1.0 -- those
two approaches already work.
Zend_Application will simply tie things together a little more
explicitly and make some of this stuff easier.
--
> On Tue, Feb 24, 2009 at 2:39 PM, Matthew Weier O'Phinney <matthew@zend.com>
> wrote:
>
> -- vadim gavrilov <vadimg88@gmail.com> wrote
> (on Tuesday, 24 February 2009, 08:21 AM +0200):
> > Does zend allows to define a directory that it will try to autoload a
> class
> > from it when ever a new instance of that class is initiated? I mean if i
> create
> > a class MasterController
> >
> > Then i do MasterController::Something() i assume zend will not find it
> unless
> > it's located in the library of the zend core files?! correct me if i am
> wrong.
> > In Yii framework you could set directories that the autoload will look
> for the
> > classes if it didn't find them in the default autoload directory. So i
> could
> > just do
> > $config['autoload_directories'] = array(
> > 'application.models.*',
> > 'application.widget.*',
> > 'application.components.*',
> > )
> >
> > then if i have the file MasterController.php in the application/
> components/ it
> > will successfully load that class since it's located in one of the
> autoload
> > directories. So my questions is , Does ZF has something like this?
>
> Currently, Zend_Loader::loadClass() allows you to provide a second
> argument, a set of directories you wish to scan when loading that class.
> Another class, Zend_Loader_PluginLoader, can also be used, and allows
> you to specify the class by a short name, to which a class prefix will
> be added.
>
> In 1.8, we are introducing Zend_Loader_Autoloader, and a "Resource"
> variant. The main Autoloader class is a namespaced autoloader for
> library classes. The second operates much more like what you're
> describing, and allows you to specify a base directory under which all
> classes have a common prefix, but under which the classes may not have a
> 1:1 correspondence with the actual file name. A variant on it,
> Zend_Application_Module_Autoloader, comes with a set of resource
> mappings that mirror the recommended project structure.
>
> Zend_Loader_Autoloader and its related classes are currently in the
> incubator, and will be promoted to trunk in the next few weeks.
>
> --
> Matthew Weier O'Phinney
> Software Architect | matthew@zend.com
> Zend Framework | http://framework.zend.com/
>
>
>
>
>
> --
> Vincent Gabriel.
> Lead Developer, Senior Support.
> Zend Certified Engineer.
>
>
>
>
Matthew Weier O'Phinney
Software Architect | matthew@zend.com
Zend Framework | http://framework.zend.com/
--
Vincent Gabriel.
Lead Developer, Senior Support.
Zend Certified Engineer.
没有评论:
发表评论