BooleanFieldEditor parseOnSave =
new BooleanFieldEditor(PHPeclipsePlugin.PHP_PARSE_ON_SAVE, "&Parse automatically on save", getFieldEditorParent());
-
+ BooleanFieldEditor outlineShowClass =
+ new BooleanFieldEditor(PHPeclipsePlugin.PHP_OUTLINE_CLASS, "Show classes in outline", getFieldEditorParent());
+ BooleanFieldEditor outlineShowFunc =
+ new BooleanFieldEditor(PHPeclipsePlugin.PHP_OUTLINE_FUNC, "Show functions in outline", getFieldEditorParent());
+ BooleanFieldEditor outlineShowVar =
+ new BooleanFieldEditor(PHPeclipsePlugin.PHP_OUTLINE_VAR, "Show variables in outline", getFieldEditorParent());
+
addField(localhost);
addField(documentRoot);
addField(chooseParser);
addField(parseOnSave);
+ addField(outlineShowClass) ;
+ addField(outlineShowFunc);
+ addField(outlineShowVar);
}
/**