1

recently I started to work on some big project written in php/js.

It is really big and I have constant problem of backtracing what functions are called where.

Is there any tool, that would import all the code files and draw/write connections between classes, objects, functions and such?

Regards

SubjectX
  • 836
  • 2
  • 9
  • 33

2 Answers2

2

BOUML can create UML diagrams out of your code

http://www.bouml.fr/

old 4.23 version is also free if that is needed

http://download.cnet.com/BOUML/3000-2094_4-10788888.html

overflowed
  • 1,773
  • 10
  • 13
2

I am using Intellij IDEA with the PHP Storm Plugin for my PHP/JS-Projects. There I'm able to right click a function and choose "Find Usage ALT+F7". Now I can see, where this function is getting called.

Intellij IDEA/PHP-Storm is also able to generate UML-Diagrams if needed.

I guess Netbeans, Eclipse+PHP-Plugin do have similar functions [maybe execpt of the uml-generator], if you need an IDE at no costs.