tag_body_start = ''; $this->options['type'] = 'submit'; $this->options['value'] = $caption; // $this->options["type"] = "button"; $this->options['class'] = 'button'; $this->SetName($name); $this->SetAction($action); $this->SetAccessKey($accesskey); } function SetAction($value='submit()', $event='onClick') { $this->options[$event] = $value; } function SetTitle($value='button title') { $this->options['title'] = $value; } function SetAccessKey($value='B') { if(!isset($this->options['title'])) $this->SetTitle($this->options['value'].' [Alt+$value]'); return $this->options['accessKey'] = $value; } } class CButtonCancel extends CButton { function CButtonCancel($vars=NULL){ parent::CButton('cancel',S_CANCEL); $this->SetVars($vars); } function SetVars($value=NULL){ global $page; $url = $page["file"]."?cancel=1"; if(!is_null($value)) $url = $url.$value; return $this->SetAction("return Redirect('$url')"); } } class CButtonDelete extends CButton { var $vars; var $msg; function CButtonDelete($msg=NULL, $vars=NULL){ parent::CButton("delete",S_DELETE); $this->SetMessage($msg); $this->SetVars($vars); } function SetVars($value=NULL){ if(!is_string($value) && !is_null($value)){ return $this->error("Incorrect value for SetVars [$value]"); } $this->vars = $value; $this->SetAction(NULL); } function SetMessage($value=NULL){ if(is_null($value)) $value = "Are You Sure?"; if(!is_string($value)){ return $this->error("Incorrect value for SetMessage [$value]"); } $this->msg = $value; $this->SetAction(NULL); } function SetAction($value=NULL){ if(!is_null($value)) return parent::SetAction($value); global $page; $confirmation = "Confirm('".$this->msg."')"; $redirect = "Redirect('".$page["file"]."?delete=1".$this->vars."')"; return parent::SetAction("if(".$confirmation.") return ".$redirect."; else return false;"); } } ?>