tag_body_start = ''; $this->options['type'] = 'submit'; $this->AddOption('value', $caption); $this->options['class'] = 'button'; $this->SetName($name); $this->SetAction($action); $this->SetAccessKey($accesskey); } function SetAction($value=null){ $this->AddAction('onclick', $value); } function SetTitle($value='button title'){ $this->AddOption('title', $value); } function SetAccessKey($value='B'){ if(isset($value)) if(!isset($this->options['title'])) $this->SetTitle($this->options['value'].' [Alt+'.$value.']'); return $this->AddOption('accessKey', $value); } function SetType($type="button"){ $this->AddOption('type',$type); } } class CButtonCancel extends CButton{ function CButtonCancel($vars=NULL,$action=NULL){ parent::CButton('cancel',S_CANCEL); $this->options['type'] = 'button'; $this->SetVars($vars); $this->SetAction($action); } function SetVars($value=NULL){ global $page; $url = "?cancel=1"; if(!is_null($value)) $url = $url.$value; return parent::SetAction("return redirect('$url')"); } } class CButtonQMessage extends CButton { /* var $vars; var $msg; var $name;*/ function CButtonQMessage($name, $caption, $msg=NULL, $vars=NULL){ $this->vars = null; $this->msg = null; $this->name = $name; parent::CButton($name,$caption); $this->SetMessage($msg); $this->SetVars($vars); $this->SetAction(NULL); } 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."')"; if(isset($this->vars)) { $action = "redirect('".$page["file"]."?".$this->name."=1".$this->vars."')"; } else { $action = 'true'; } return parent::SetAction("if(".$confirmation.") return ".$action."; else return false;"); } } class CButtonDelete extends CButtonQMessage { function CButtonDelete($msg=NULL, $vars=NULL){ parent::CButtonQMessage("delete",S_DELETE,$msg,$vars); } } ?>