• [织梦吧]唯一域名:www.dedecms8.com,织梦DedeCMS学习平台.

当前位置: > DedeCMS教程 > Dedecms二次开发 >

网友摘出DedeCMS程序里的ShowMsg函数

来源: www.dedecms8.com 编辑:织梦吧 时间:2012-11-06点击:

dedecms里面的一个ShowMsg函数大家都熟悉,看下面的图片:

ShowMsg函数
ShowMsg函数

今天把dedecms的ShowMsg方法提取出来了,分享下代码:

  1. <?php 
  2. function ShowMsg($msg, $gourl, $onlymsg = 0, $limittime = 0) //系统提示信息 
  3. /* 
  4. *$msg 信息提示的内容 
  5. *$gourl 需要跳转的网址 
  6. *$onlymsg 1 表示不自动跳转 0表示自动跳转 
  7. *$limittime 跳转的时间 
  8. */ 
  9.     global $dsql, $cfg_ver_lang; 
  10.     if (eregi ( "^gb", $cfg_ver_lang )) 
  11.     $cfg_ver_lang = 'utf-8'
  12.     $htmlhead = "<html>\r\n<head>\r\n<title>系统提示</title>\r\n<meta http-equiv=\"Content-Type\" 
  13. content=\"text/html; charset=utf-8\" />\r\n"; 
  14.     $htmlhead ."<base target='_self'/>\r\n</head>\r\n<body leftmargin='0' topmargin='0'>\r\n<center>\r\n<script>\r\n"
  15.     $htmlfoot = "</script>\r\n</center>\r\n</body>\r\n</html>\r\n"
  16.   
  17.     if ($limittime == 0) 
  18.         $litime = 3000
  19.     else 
  20.         $litime = $limittime; 
  21.   
  22.     if ($gourl == "-1") { 
  23.         if ($limittime == 0) 
  24.             $litime = 3000
  25.         $gourl = "javascript:history.go(-1);"
  26.     } 
  27.   
  28.     if ($gourl == "" || $onlymsg == 1) { 
  29.         $msg = "<script>alert(\"" . str_replace ( "\"", "“", $msg ) . "\");</script>"; 
  30.     } else { 
  31.         $func = "     var pgo=0
  32.       function JumpUrl(){ 
  33.         if(pgo==0){ location='$gourl'pgo=1; } 
  34.       }\r\n"; 
  35.         $rmsg = $func; 
  36.         $rmsg ."document.write(\"<br /><div style='width:450px;padding:0px;border:1px solid #DADADA;'>"; 
  37.         $rmsg ."<div style='padding:6px;font-size:12px;border-bottom:1px solid #DADADA;
  38. background:#DBEEBD url(wbg.gif)';'><b>提示信息!</b></div>\");\r\n"; 
  39.         $rmsg ."document.write(\"<div style='height:130px;font-size:10pt;background:#ffffff'><br />\");\r\n"; 
  40.         $rmsg .= "document.write(\"".str_replace("\"","“",$msg)."\");\r\n"; 
  41.         $rmsg ."document.write(\""; 
  42.         if ($onlymsg == 0) { 
  43.             if ($gourl != "javascript:;" && $gourl != "") { 
  44.                 $rmsg ."<br/><br/><a href='" . $gourl . "'>如果你的浏览器没反应,请点击这里...</a>"; 
  45.             } 
  46.             $rmsg ."<br/><br/></div>\");\r\n"; 
  47.             if ($gourl != "javascript:;" && $gourl != "") { 
  48.                 $rmsg ."setTimeout('JumpUrl()',$litime);"
  49.             } 
  50.         } else { 
  51.             $rmsg ."<br/><br/></div>\");\r\n"; 
  52.         } 
  53.         $msg = $htmlhead . $rmsg . $htmlfoot; 
  54.     } 
  55.     if (isset ( $dsql ) && is_object ( $dsql )) 
  56.         @$dsql->Close (); 
  57.     echo $msg; 
  58. ?> 

使用方法: ShowMsg("提示信息","进行跳转的页面url");

如果上面的代码看不清楚,可以本附件:

ShowMsg.rar

About D8

  • ©2014 织梦吧(d8) DedeCMS学习交流平台
  • 唯一网址 www.DedeCMS8.com 网站地图
  • 联系我们 tom@tiptop.cn ,  QQ