label = translate ($input ['label']); else $this->label = __ ('Save'); if (isset ($input ['image']) && trim ($input ['image']) != '') $this->image = $input ['image']; else $this->image = 'save.png'; if (isset ($input ['itemId'])) $itemId = $input ['itemId']; else { global $itemId; if (!is_null ($itemId)) $this->itemId = $itemId; } if (isset ($input ['go-to']) && trim ($input ['go-to']) != '') $this->goTo = $input ['go-to']; } public function getMenuItem () { global $form; return '
  • '. $this->label .''. $this->label .'
  • '; } public function getSubmenuItem () { global $form; return '
  • '. $this->label .'
  • '; } } ?>