Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Framework to develop simple Eclipse plugin using PHP/UsingThePlugin"

(Quick Start)
Line 1: Line 1:
 
=Quick Start=
 
=Quick Start=
 +
* Install the plugin
 +
* Right click on a project and select "Add PhpPlugin Project Nature"
 +
** It does not always appear for opened projects. Close the project if that is the case and try again.
 +
* Create a PHP file
 +
** Contents can be <? echo "Hello, World!"

Revision as of 00:18, 12 July 2007

Quick Start

  • Install the plugin
  • Right click on a project and select "Add PhpPlugin Project Nature"
    • It does not always appear for opened projects. Close the project if that is the case and try again.
  • Create a PHP file
    • Contents can be <? echo "Hello, World!"

Back to the top