void executeVerb(
integer
$verb)
|
|
Depending on the verb, perform any action you want
This method is called by the IDE when the user selects an option of the popup menu shown when the user right clicks on it.
The option the user selects is specified on the $verb param and you must use the getVerbs method to tell the IDE which options to show.
Overridden in child classes as:
- DatabaseEditor::executeVerb()
Parameters:
Return here an array of items to show when right clicking a component
Use this method to return the IDE the array of options to show when the user right clicks a component. Each element on the array will become an item on the popup menu shown. If you want to perform an specific action when clicking on an option, use the executeVerb method.
Overridden in child classes as:
- DatabaseEditor::getVerbs()