Hello,

I'm approximately following the jobeet (propel) tutorial using my own
database. I went through the frontend application development and it
all works as expected. Now I wanted to try the backend part of the
tutorial so I created the app by running:

./symfony generate:app --escaping-strategy=on --csrf-secret=my own
secrete backend

Then I  created a backend module for one of the tables (the table is
named contact and the associate ORM class is Contact) by running:
./symfony propel:generate-admin backend Contact --module=contacts

Now if I want to check the module in the Web browser I get the
following error:
Fatal error: Class 'ContactFormFilter' not found in /Path/To/My/webapp/
cache/backend/dev/modules/autoContacts/lib/
BaseContactsGeneratorConfiguration.class.php on line 331

The peace of code that the line 331 refers to is (with line numbers in
the left column):

327  public function getFilterForm($filters)
328 {
329   $class = $this->getFilterFormClass();
330
331   return new $class($filters, $this->getFilterFormOptions());
332  }

Does anyone have any ideas what is happening?

Thank you very much,
--Dan

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"symfony users" group.
To post to this group, send email to symfony-users@googlegroups.com
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to