Page::getButtonName() -- Returns a name for a submit button that will invoke a specific action.
Description
Returns a name for a submit button (or an <input type="image"> control) that will invoke a specific action. This means the following: if you do
$this->addElement('submit', $this->getButtonName('foo'), 'Foo'); |
inside the
buildForm()
method and the user later uses this button to submit the form, then the
'foo' handler (added
via
addAction()
will be called.
Paramètres
- chaîne de caractères
$actionName
Name of the action
Valeur retournée
returns "name" attribute for a submit button
Valeurs renvoyées
throws no exceptions thrown
Note
Cette fonction ne peut pas être appelée de façon statique.