|
- <?php
-
- require_once(dirname(__FILE__)."/config.php");
- require_once(DEDEINC.'/datalistcp.class.php');
- CheckPurview('group_Edit');
-
- $id = isset($id) && is_numeric($id) ? $id : 0;
- $gid = isset($gid) && is_numeric($gid) ? $gid : 0;
- $action = isset($action) ? trim($action) : '';
-
- $keyword = isset($keyword) ? trim($keyword) : '';
- $keyword = stripslashes($keyword);
- $keyword = preg_replace("#[\"\r\n\t\*\?\(\)\$%']#", " ", trim($keyword));
- $keyword = addslashes($keyword);
-
- $username = isset($username) ? trim($username) : '';
- $username = stripslashes($username);
- $username = preg_replace("#[\"\r\n\t\*\?\(\)\$%']#", " ", trim($username));
- $username = addslashes($username);
-
- if($gid < 1)
- {
- ShowMsg("含有非法操作!.","-1");
- exit();
- }
-
- if($action=="del")
- {
- if($id > 0)
- {
- $db->ExecuteNoneQuery("DELETE FROM #@__group_notice WHERE id='$id'");
- }
- }
- else if($action=="edit")
- {
- $row = $db->GetOne("SELECT * FROM #@__group_notice WHERE id='$id'");
- $title = $row['title'];
- $notice = $row['notice'];
- }
- else if($action=="save")
- {
- $row = $db->GetOne("SELECT * FROM #@__group_notice WHERE id='$id'");
- if(empty($title))
- {
- $title = $row['title'];
- }
- if(empty($notice))
- {
- $notice = $row['notice'];
- }
- $db->ExecuteNoneQuery("UPDATE #@__group_notice SET notice='".$notice."',title='".$title."' WHERE id='$id'");
- }
- unset($row);
-
-
- $wheresql = "WHERE gid='{$gid}'";
- if(!empty($keyword))
- {
- $wheresql .= " AND (title like '%".$keyword."%' OR notice like '%".$keyword."%')";
- }
- if(!empty($username))
- {
- $wheresql .= " AND uname like '%".$username."%'";
- }
- $sql = "SELECT * FROM #@__group_notice $wheresql ORDER BY stime DESC";
-
- $dl = new DataListCP();
- $dl->pageSize = 20;
- $dl->SetParameter("keyword",$keyword);
- $dl->SetParameter("username",$username);
- $dl->SetParameter("gid",$gid);
-
-
- $dl->SetTemplate(DEDEADMIN."/templets/group_notice.htm");
- $dl->SetSource($sql);
- $dl->Display();
-
- ?>
|