tags. * @package forms * @subpackage actions */ class FormAction extends FormField { protected $extraData; protected $action; /** * Enables the use of \n"; } else { return "extraClass() . "\" id=\"" . $this->id() . "\" type=\"submit\" name=\"$this->action\" value=\"" . $this->attrTitle() . "\" $titleAttr />\n"; } } /** * Does not transform to readonly by purpose. * Globally disabled buttons would break the CMS. */ function performReadonlyTransformation() { $this->setDisabled(true); return $this; } function readonlyField() { return $this; } } /** * @package forms * @subpackage actions */ class FormAction_WithoutLabel extends FormAction { function Title(){ return null; } } ?>