Server IP : 103.53.40.154 / Your IP : 3.144.42.233 Web Server : Apache System : Linux md-in-35.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : ppcad7no ( 715) PHP Version : 8.2.25 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home2/ppcad7no/indiatourbus.com/../vivahmilankendra.com/admin/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php require_once("header.php");?> <?php require_once("left-nav.php");?> <?php $catID=trim($_REQUEST['catID']); $catID = trim($catID); ?> <style> .v-middle { vertical-align:middle !important; } span.home-lbl { background: #FFEB3B; padding: 1px 15px 1px 15px; font-size: 11px; font-weight: 600; color: red; border: solid thin #f0df4d; position: relative; top: 5px; }</style> <?php if($st!=""){ $st=$_REQUEST['st']; $subcatID=$_REQUEST['pid']; if($st==1){ $sql="UPDATE tbl_community SET c_status='Inactive' WHERE c_id='$subcatID' "; $res=db_query($sql); if($res>0){ $_SESSION["msg"]="Selected community is deactivated successfully."; } }else{ $sql="UPDATE tbl_community SET c_status='Active' WHERE c_id='$subcatID' "; $res=db_query($sql); if($res>0){ $_SESSION["msg"]="Selected community is activated successfully."; } } header("location:religion_list.php"); exit; } if(isset($_REQUEST['Delete'])){ if(is_array($_REQUEST['arr_ids'])){ $check=$_REQUEST['arr_ids']; $SUB=count($check); function del_sub($CAT){ $select=db_query("select * from tbl_community where c_parent_id='$CAT'"); while($SQL=mysqli_fetch_array($select)){ del_sub($SQL['c_id']); $delete=db_query("delete from tbl_community where c_parent_id='$SQL[c_id]'"); } $del=db_query("delete from tbl_community where c_id='$CAT'"); } for($x=0;$x<$SUB;$x++){ del_sub($check[$x]); } } $_SESSION['msg']="Selected category is deleted successfully !"; } if(is_post_back()) { $arr_ids = $_REQUEST['arr_ids']; if(is_array($arr_ids)) { $str_ids = implode(',', $arr_ids); if(isset($_REQUEST['Activate']) || isset($_REQUEST['Activate_x']) ) { db_query("update tbl_community set c_status='Active' where c_id in ($str_ids)"); $_SESSION["msg"]="selected categories are activated. "; } else if(isset($_REQUEST['Deactivate']) || isset($_REQUEST['Deactivate_x']) ) { db_query("update tbl_community set c_status='Inactive' where c_id in ($str_ids)"); $_SESSION["msg"]="selected categories are deactivated. "; }else if(isset($_REQUEST['set_home']) || isset($_REQUEST['set_home_x']) ) { db_query("update tbl_community set category_for_home='Yes' where c_id in ($str_ids)"); $_SESSION["msg"]="selected categories is set for home. "; }else if(isset($_REQUEST['remove_home']) || isset($_REQUEST['remove_home_x']) ) { db_query("update tbl_community set category_for_home='No' where c_id in ($str_ids)"); $_SESSION["msg"]="selected categories is removed from home. "; } } if(isset($_REQUEST['Update'])){ foreach($c_order_by as $key=>$value){ db_query("update tbl_community set c_order_by ='$value' where c_id='$key'"); } $_SESSION["msg"]="Selected order is set."; header("Location: ".$_SERVER['HTTP_REFERER']); exit; } } $start = intval($start); $pagesize = intval($pagesize)==0?$pagesize=DEF_PAGE_SIZE:$pagesize; $order_by == '' ? $order_by = 'c_order_by' : true; $order_by2 == '' ? $order_by2 = 'asc' : true; $sql = "select * from tbl_community where 1 and c_parent_id='$catID'"; $sql = apply_filter($sql, $c_title, 'like','c_title'); $sql .= " order by $order_by $order_by2 "; $sql .= " limit $start, $pagesize "; //echo $sql; $pager = new midas_pager_sql($sql, $pagesize, $start); if($pager->total_records) { $result = db_query($sql); } ?> <script language="JavaScript" type="text/javascript" src="../includes/general.js"></script> <!-- =============================================== --> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <!-- Content Header (Page header) --> <section class="content-header"> <div class="header-icon"> <i class="fa fa-users" aria-hidden="true"></i> </div> <div class="header-title"> <h1>Community</h1> <small>Community List</small> <a href="addedit-community.php?id=0&catID=<?=$catID?>"><button id="btn-go-back" type="button" class="btn btn-labeled btn-inverse m-b-5 pull-right"> <span class="btn-label"><i class="fa fa-plus" aria-hidden="true"></i> </span>Add Community </button></a> <a href="religion_list.php"><button id="btn-go-back" type="button" class="btn btn-labeled btn-inverse m-b-5 mr10 pull-right"> <span class="btn-label"><i class="fa fa-chevron-left" aria-hidden="true"></i> </span>Back </button></a> <span class="count-num">Total : <?=db_scalar("SELECT COUNT(c_id) FROM tbl_community WHERE 1 AND c_parent_id='$_REQUEST[catID]'")?></span> </div> </section> <!-- Main content --> <section class="content"> <div class="row"> <?php if($_SESSION["msg"]!=""){?> <div class="alert alert-success alert-dismissable fade in text-center" style="background-color:#dff0d8;border:none; color:#000;margin:10px 0 0 0"> <a href="#" class="close" data-dismiss="alert" aria-label="close">×</a> <strong>Success! </strong> <?=$_SESSION["msg"]?> </div> <?php unset($_SESSION["msg"]); }?> <div class="col-lg-12"> <? if($pager->total_records!=0) {?> <div class="col-lg-6 text-left" > <? $pager->show_displaying()?> </div> <div class="col-lg-6 text-right" >Records Per Page: <?=pagesize_dropdown('pagesize', $pagesize);?> </div> <?php } ?> </div> <div class="col-sm-12"> <div class="panel panel-bd lobidrag" data-edit-title='false' data-close='false' data-reload='false'> <div class="panel-heading"> <div class="btn-group" id="buttonexport"> <a href="#"> <h4 class="font-black">Community List</h4> </a> </div> </div> <div class="panel-body"> <? if($pager->total_records>0) {?> <div class="table-responsive"> <form action="" method="post" enctype="multipart/form-data"> <table id="dataTableExample1" class="table table-bordered table-striped table-hover"> <thead> <tr class="info"> <th class="text-center">S.No.</th> <th class="text-center">Title</th> <!--<th class="text-center">Add</th> --> <th class="text-center">Status</th> <th class="text-center">Order By</th> <th class="text-center">Action</th> <th class="text-center"><input name="check_all" type="checkbox" id="check_all" value="1" onclick="checkall(this.form)" /></th> </tr> </thead> <tbody> <? $cnt=0; while ($line_raw = mysqli_fetch_array($result)) { $line = ms_display_value($line_raw); @extract($line); $css = ($css=='trOdd')?'trEven':'trOdd'; ?> <tr> <td class="text-center v-middle" ><?=++$cnt?></td> <?php /*?><td class="text-center v-middle"><a href="subcommunity_list.php?rID=<?=$line_raw["c_parent_id"]?>&cID=<?=$line_raw["c_id"]?>"><?=$line_raw["c_title"]?> <i class="fa fa-arrow-right"></i></a></td><?php */?> <td class="text-center v-middle bold"><?=$line_raw["c_title"]?></td> <?php /*?><td class="text-center v-middle"> <a href="addedit-subcommunity.php?scID=0&rID=<?=$line_raw["c_parent_id"]?>&cID=<?=$line_raw["c_id"]?>"><button type="button" class="btn btn-info btn-outline w-md m-b-5 bold"><i class="fa fa-plus font-black"> </i></span>Add Sub-Community</button></a> </td><?php */?> <td class="text-center v-middle"> <?php if($line_raw["c_status"]=="Active"){?> <a href="community_list.php?st=1&pid=<?=$line_raw["c_id"]?>"><span class="label-custom label label-default">Active</span></a> <?php }else{?> <a href="community_list.php?st=0&pid=<?=$line_raw["c_id"]?>"><span class="label-danger label label-default">Inactive</span></a> <?php }?> </td> <td class="v-middle" align="center"> <input type="text" name="c_order_by[<?=$c_id?>]" id="c_order_by[<?=$c_id?>]" value="<?=$c_order_by?>" class="form-control" style="width:40px" /> </td> <td class="text-center v-middle"> <a href="addedit-community.php?id=<?=$line_raw["c_id"]?>&catID=<?=$catID?>"><button type="button" class="btn btn-add btn-sm" ><i class="fa fa-pencil"></i></button> </a> </td> <td class="text-center v-middle"><input name="arr_ids[]" type="checkbox" id="arr_ids[]" value="<?=$c_id?>" /></td> </tr> <?php } ?> <tr> <td colspan="8"> <?php //if($_SESSION['sess_admin_type']=='Admin'){ ?> <button style="background-color:#CA0000;border:none" type="submit" name="Delete" onClick="return select_chk()" class="btn btn-primary pull-left ml5 " >Delete</button> <? //} ?> <!--<button type="submit" name="set_home" class="btn btn-default pull-left mr5 ml10" >Set For Home</button> <button type="submit" name="remove_home" class="btn btn-black pull-left mr5" >Remove From Home</button>--> <button type="submit" name="Update" class="btn btn-primary pull-right ml5 " >Update Order</button> <button type="submit" name="Deactivate" class="btn btn-danger pull-right mr5" >Make Inactive</button> <button type="submit" name="Activate" class="btn btn-success pull-right mr5" >Make Active</button> </td></tr> </tbody> </form> </table> <? $pager->show_pager();?> </div> <?php }else{?> <div class="col-lg-12 msg text-center">Sorry, no records found.</div> <?php }?> </div> </div> </div> </div> </section> </div> <?php require_once("footer.php"); ?>