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 "Extending PDT"

(New page: == Purpose == There are different purposes for extending PDT. One of them is adding support for specific PHP framework in the following features: * Code Assist * Navigation: CTRL+click *...)
 
(Purpose)
Line 1: Line 1:
 
== Purpose ==
 
== Purpose ==
 +
There are different purposes for extending PDT. One of them is adding support for specific PHP framework to the IDE features like: Code Assist, Navigation (CTRL + click), Presentation (Outline, PHP Explorer). In this document we'll describe how to achieve these goals using PDT extension points.
  
There are different purposes for extending PDT. One of them is adding support for specific PHP framework in the following features:
+
== Extending ==
 
+
=== Code Assist ===
* Code Assist
+
=== CTRL + click ===
* Navigation: CTRL+click
+
=== Outline and PHP Explorer ===
* Presentation: Outline, PHP Explorer
+
 
+
In this document we'll describe how to achieve these goals using PDT extension points.
+

Revision as of 04:23, 30 November 2009

Purpose

There are different purposes for extending PDT. One of them is adding support for specific PHP framework to the IDE features like: Code Assist, Navigation (CTRL + click), Presentation (Outline, PHP Explorer). In this document we'll describe how to achieve these goals using PDT extension points.

Extending

Code Assist

CTRL + click

Outline and PHP Explorer

Back to the top