I have an eclipse plug-in that works in Java projects. How can I convert to make it work in PHP projects is as well? Thanks in advance.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
A plugin is an OSGi bundle and OSGi bundles usually don’t care if the actual eclipse IDE is currently used to develop Java or PHP.
eclipse bundles may be designed to contribute to certain extension points so there’s a chance, that your plugin contributes to JDT extension points which are not “visible” (bad word, hope you know what I mean) from the PHP development tools.
It may depend on some other bundles that are not available or have not been installed/started. Execute the platform with the
-commandoption to get the OSGi command line interface and check the status of your plugins. (helpshows available commands)