Where can I find diagrams for drupal? [closed]
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this questionI need some diagrams, especially logic database diagram (Entity Relationship Diagram) of Dru开发者_Python百科pal. I've tried http://drupal.org/node/1161 but all the links are broken.
When you install Drupal with MySQL as database, I suggest using the fine "MySQL Workbench" and reverse engineer the database. No matter the structure, you will find a nice ER-diagramm no matter the Drupal version.
For more figures: Look through the docs and the community pages. There is, for example, a nice illustration how the forms are working.
Here is the diagram for Drupal 7:
Concerning the database diagrams. Drupal manage its database schema dynamically. Most module will create their own tables when installed, and some of them will create tables when higher-level object are created through the UI or via code. For instance, the SQL storage (ie. the default one) for the Field API will create tables for entity bundles and their fields.
Since the database schema is dynamic, it cannot be presented in a single diagram. This would make sense. You cam however, generate a diagram from a Drupal database using various reverse engineering tools.
精彩评论