Re: [symfony-users] Possible to write a table-less doctrine schema definition?

2010-06-15 Thread Eno
On Tue, 15 Jun 2010, Christian Schaefer wrote: > However this Form does not relate to a table in the database but is > used to access a web service. So I need no model. > > Is there a way to define a "virtual schema definition" for this so > that symfony doctrine:build --all will generate the app

Re: [symfony-users] Possible to write a table-less doctrine schema definition?

2010-06-15 Thread Daniel Lohse
AFAIK, there is no such possibility – you're going to have to craft them by hand. :) Cheers, Daniel On 15.06.2010, at 14:15, Christian Schaefer wrote: > > Hi all, > > I want to write a plugin that amongst other features contains a Form > class. > For extensibility reasons I would like it to

[symfony-users] Possible to write a table-less doctrine schema definition?

2010-06-15 Thread Christian Schaefer
Hi all, I want to write a plugin that amongst other features contains a Form class. For extensibility reasons I would like it to follow the same way that doctrine model forms are organised having a Base..Form, Plugin..Form and ..Form. So the developer can add custom code inheriting the one from t