Hello,
I am trying to create a kind of child module with admin generator.
I wanted to know if you have solutions.

Take for example the following model :

Article:
  columns:
    title: { type: string(45) }
    headline: { type: string(500) }

ArticlePage:
  columns:
    title: { type: string(45), notnull: true }
    content: { type: clob }
    page_id: { type: integer, notnull: true }
  relations:
    Article:
      local: page_id
      foreign: id
      alias: Article
      foreignAlias: Pages
      onDelete: cascade

First, I want to create an admin module to manage Articles. So far no
problem.
Then I want to create another admin module to manage ArticlePage
related to one Article (and not all Articles).
How? Is this possible with the admin generator?

Thank you in advance for your reply.

-- 
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 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