mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
d26f08b481
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@67465 467b73ca-7a2a-4603-9d3b-597d59a354a9
21 lines
522 B
Scheme
21 lines
522 B
Scheme
digraph g {
|
|
orientation=portrait;
|
|
overlap=false;
|
|
splines=true;
|
|
|
|
edge[fontsize=8,len=1.5];
|
|
node[fontsize=10,shape=box];
|
|
|
|
<% control Modules %>
|
|
<% control Models %>
|
|
$Name [shape=record,label="{$Name|<% control Fields %>$Name\\n<% end_control %>}"];
|
|
<% if ParentModel %>
|
|
$Name -> $ParentModel [style=dotted];
|
|
<% end_if %>
|
|
<% control Relations %>
|
|
$Model.Name -> $RelatedClass [label="$Name\\n$RelationType"];
|
|
<% end_control %>
|
|
<% end_control %>
|
|
<% end_control %>
|
|
}
|