myWin .= ""; $this->formName = $formname; $this->myWin .= "
"; } /** * 增加隐藏域 * * @param string $iname 隐藏域名称 * @param string $ivalue 隐藏域值 * @return void */ function AddHidden($iname, $ivalue) { $this->myWin .= ""; } /** * 开始创建窗口 * * @return void */ function StartWin() { $this->myWin .= ""; } /** * 增加一个两列的行 * * @access public * @param string $iname 名称 * @param string $ivalue 值 * @return string */ function AddItem($iname, $ivalue) { $this->myWinItem .= ""; $this->myWinItem .= ""; $this->myWinItem .= ""; $this->myWinItem .= ""; } /** * 增加一个单列的消息行 * * @access public * @param string $ivalue 短消息值 * @param string $height 消息框高度 * @param string $col 显示列数 * @return void */ function AddMsgItem($ivalue, $height = "auto", $col = "2") { if ($height != "" && $height != "0") { $height = " height='$height'"; } else { $height = ""; } if ($col != "" && $col != 0) { $colspan = "colspan='$col'"; } else { $colspan = ""; } $this->myWinItem .= ""; $this->myWinItem .= ""; $this->myWinItem .= ""; } /** * 增加单列的标题行 * * @access public * @param string $title 标题 * @param string $col 列 * @return string */ function AddTitle($title, $col = "2") { global $cfg_static_dir; if ($col != "" && $col != "0") { $colspan = "colspan='$col'"; } else { $colspan = ""; } $this->myWinItem .= ""; $this->myWinItem .= ""; $this->myWinItem .= ""; } /** * 结束Window * * @param bool $isform * @return void */ function CloseWin($isform = true) { if (!$isform) { $this->myWin .= "
$iname$ivalue
$ivalue
$title
"; } else { $this->myWin .= "
"; } } /** * 增加自定义JS脚本 * * @param string $scripts * @return void */ function SetCheckScript($scripts) { $pos = strpos($this->myWin, $this->tmpCode); if ($pos > 0) { $this->myWin = substr_replace($this->myWin, $scripts, $pos, strlen($this->tmpCode)); } } /** * 获取窗口 * * @param string $wintype 菜单类型 * @param string $msg 短消息 * @param bool $isform 是否是表单 * @return string */ function GetWindow($wintype = "save", $msg = "", $isform = true) { global $cfg_static_dir; $this->StartWin(); $this->myWin .= $this->myWinItem; $tt = ""; switch ($wintype) { case 'back': $tt = "返回"; break; case 'ok': $tt = "确定"; break; case 'reset': $tt = "重置"; break; case 'search': $tt = "搜索"; break; default: $tt = "保存"; break; } if ($wintype != "") { if ($wintype != "hand") { $this->myWin .= " "; } else { if ($msg != '') { $this->myWin .= "$msg"; } else { $this->myWin .= ''; } } } $this->CloseWin($isform); return $this->myWin; } /** * 显示页面 * * @access public * @param string $modfile 模型模板 * @return string */ function Display($modfile = "") { global $cfg_templets_dir, $wecome_info, $cfg_basedir; if (empty($wecome_info)) { $wecome_info = "通用对话框"; } $ctp = new DedeTagParse(); if ($modfile == '') { $ctp->LoadTemplate($cfg_basedir.$cfg_templets_dir.'/plus/win_templet.htm'); } else { $ctp->LoadTemplate($modfile); } $emnum = $ctp->Count; for ($i = 0; $i <= $emnum; $i++) { if (isset($GLOBALS[$ctp->CTags[$i]->GetTagName()])) { $ctp->Assign($i, $GLOBALS[$ctp->CTags[$i]->GetTagName()]); } } $ctp->Display(); $ctp->Clear(); } }//End Class /** * 显示一个不带表单的普通提示 * * @access public * @param string $msg 消息提示信息 * @param string $title 提示标题 * @return string */ function ShowMsgWin($msg, $title) { $win = new OxWindow(); $win->Init(); $win->mainTitle = "系统提示"; $win->AddTitle($title); $win->AddMsgItem("$msg"); $winform = $win->GetWindow("hand"); $win->Display(); } ?>