Eclipse does a hint of the PHP function / method, putting all the PHP function names and code hints into a file called standard.php and associates it with the project as a library (?). Just CTRL + Click any php function to raise it.
Inside standard.php there is a link after the link for all PHP functions, such as ...
function is_int ($var) {}
I would like to provide something similar to my programmers spanning our own application so that I can restrict access to our source code for the software, but still give them the advantage of supporting hints and documentation.
Question: Is there a way in Eclipse to export or automatically generate a similar link to a function that can serve the same purpose as PHP in standard.php ?
EDIT: We are in the early stages of creating a utility to do just that, which we will bring to GitHub when it is far enough away.
Right now we have created an empty repo on Github, so show it there if you are interested in getting a copy when it goes up. The repo can be found here: https://github.com/ecommunities/Code-Hint-Aggregator
UPDATE:. It took some time to find the time, but the GitHub project mentioned above is now running and now we can parse the entire project and display a map of its entire namespace / class / method. FYI, It's still in Alpha, but it's worth a look. :)
oucil source share