The Code Assist feature enables the selection and insertion of existing code elements to complete partially entered code.
A list of possible code elements is displayed in relevant locations within your files according to the context of your cursor, which you can then select to be automatically entered into your code.
Each type of code element will have a unique icon. See PHP Icons for a description of each of the icons.
|
Reserved PHP Words |
|
Functions |
|
Templates |
|
Classes |
|
Interfaces |
|
Constants |
|
Variables (public) |
|
PHP File Include Call |
|
Namespaces (PHP 5.3) |
|
Packages |
Code Assist works with the following elements: PHP Classes, Functions, Variables, Constants, Keywords, Interfaces, attributes, values, nested functions, names, syntax and include calls, as well as all user defined Classes, Functions and Constants.
Note:
Code Assist will also be available for JavaScript elements if JavaScript support was enabled for the project. See Enabling JavaScript Support in PHP Projects for more information.
Elements within the same active project, file or function will be available for use with Code Assist.
|
Examples:
|
When entering a function call, a Function Parameter Hint box will be displayed detailing the types of parameters which should be entered within the parentheses of the function call.
|
|
|
Example: |
|
If the Function Parameter Hint box is not displayed automatically, place your cursor between the parentheses and press Ctrl+Shift+Space.
By using a comment you can assign a variable its exact class value. This assignment will affect the code assist of this variable accordingly.
|
|
|
Example: |
Note: Without the comment, code assist will not be available for the function. |
PDT supports code assist options for 'magic members'. These are properties and methods which were declared using the @property or @method tags within PHP DocBlock comments rather than in the PHP script itself.
See http://manual.phpdoc.org/HTMLSmartyConverter/PHP/phpDocumentor/tutorial_tags.property.pkg.html for more information on magic members.
|
|
|
Example: |
|
Code assist supports camel case matches when entering code, which displays code assist options based on an element's initials.
|
|
|
Example: |
Note: Camel Case matching is case sensitive. |
When the PHP executable used for the project is set to version 5.3, code assist is available for namespaces.
Namespace elements are represented by
the Namespace icon .
|
|
|
Example: |
|
To configure PHP Code Assist options, go to the Code Assist Preferences page, accessible from Window | Preferences | PHP | Editor | Code Assist.
To configure JavaScript Code Assist options, go to the JavaScript Content Assist Preferences page, accessible from Window | Preferences | JavaScript | Editor | Content Assist.
|
|
|
Related Links: |
|
|