What you're seeing is correct behavior. Doctrine generated the Plugin* classes for you to fill with the plugin code and generates the Base* and the normal classes inside the project's lib/ folder. That's because you ought to be able to extend the plugin in the project itself — that's why it's done this way. Put your code in the Plugin* classes and everything will be fine.
Cheers, Daniel Sent from my iPhone On Aug 4, 2010, at 11:45 PM, "Daniel Kucharski" <[email protected]> wrote: > In, > > > > In the progress of moving some of my doctrine / symphony 1.4 based project to > a plugin I am facing problems generating form classess located in the new > plugin. > > > > Beneath an excerpt of generated classes in this folder: > > > > /lib/forms/base/PluginBrandForm.class.php > > /lib/forms/doctrine/base/BasePluginBrandForm.class.php > > /lib/forms/sfXeriasPlugin/BrandForm.class.php > > /lib/forms/sfXeriasPlugin/BaseBrandForm.class.php > > > > I don’t understand why /lib/forms/base/PluginBrandForm.class.php was > generated and why /lib/forms/sfXeriasPlugin/BaseBrandForm.class.php extends > class PluginBrandForm > > > > > > I already have rebuild the whole project and of course cleared the cache. > Anyone thoughts how to resolve this issue? > > Additional info: the project itself has no forms anymore, everything has been > moved to the plugin. > > > > Kind regards, > > > > Daniel > > > > -- > If you want to report a vulnerability issue on symfony, please send it to > security at symfony-project.com > > You received this message because you are subscribed to the Google > Groups "symfony users" group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/symfony-users?hl=en -- If you want to report a vulnerability issue on symfony, please send it to security at symfony-project.com You received this message because you are subscribed to the Google Groups "symfony users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/symfony-users?hl=en
