($from, $to)
| 83 | } |
| 84 | |
| 85 | function createUMLEdge($from, $to) { |
| 86 | global $out; |
| 87 | |
| 88 | static $count = 0; |
| 89 | $out[] = " <edge id=\"e$count\" source=\"$from\" target=\"$to\" />\n"; |
| 90 | ++$count; |
| 91 | } |
| 92 | |
| 93 | function rp($string) { |
| 94 | return strtr($string, array(")" => "", "(" => "", " " => "", " " => "", "," => "")); |