*/ trait SubmitButton { protected $formId = null; public function setFormId($id) { $this->formId = $id; return $this; } public function getFormId() { return $this->formId; } }