[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: manage-cssps.php
<?php error_reporting(0); include("../functions.php"); if(!isset($_SESSION['dbmail_Xw211qAAsq4'])){ header("location:../auth-login"); } else { $s_code = $_SESSION['s_code_Xw2119904']; $uname = $_SESSION['name_Xw2119904']; $stmt = $con->prepare("SELECT * FROM schools WHERE user_name = ? AND school_code = ?"); $stmt->execute(array($uname, $s_code)); $userstatus = $stmt->fetchAll(); // Initialize $namee to prevent potential errors $namee = null; foreach ($userstatus as $sta) { $namee = $sta['user_name']; $userid = $sta['id']; $school_name = $sta['school_name']; } $stmt = $con->prepare("Select * from schools where school_code = ?"); $stmt->execute(array($s_code)); $row = $stmt->fetch(); $logo = $row['logo']; if(empty($logo)){ header("Location:complete-process"); } else { $message = ""; if (isset($_FILES['csv_file'])) { $file = $_FILES['csv_file']['tmp_name']; $handle = fopen($file, "r"); if ($handle !== FALSE) { // Loop through the CSV rows while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) { $indexNo = mysqli_real_escape_string($new, $data[0]); $stud_name = mysqli_real_escape_string($new, $data[1]); $gender = mysqli_real_escape_string($new, $data[2]); $grade = (int) $data[3]; $programme = mysqli_real_escape_string($new, $data[4]); $tack = mysqli_real_escape_string($new, $data[5]); $status = mysqli_real_escape_string($new, $data[6]); $protocol_code = ""; $semester = test_input($_POST['semester']); $academicyear1 = test_input($_POST['academicyear']); // Check if indexNo already exists $checkQuery = "SELECT indexNo FROM enrol_generic WHERE indexNo = '$indexNo' AND s_code = '$s_code'"; $checkResult = mysqli_query($new, $checkQuery); if (mysqli_num_rows($checkResult) > 0) { // If indexNo already exists, skip insertion and show alert echo "<script> document.addEventListener('DOMContentLoaded', function() { Swal.fire({ title: 'Warning!', text: 'Duplicate index number found: $indexNo. Skipping this entry.', icon: 'warning', confirmButtonText: 'OK' }); }); </script>"; continue; // Skip to the next row in the CSV } // Insert the data if indexNo is unique $sql = "INSERT INTO enrol_generic (indexNo, stud_name, gender, grade, programme, tack, status, s_code, protocol_code, sem, academicyear) VALUES ('$indexNo', '$stud_name', '$gender', $grade, '$programme', '$tack', '$status', '$s_code', '$protocol_code', '$semester', '$academicyear1')"; if (!mysqli_query($new, $sql)) { echo "Error inserting row: " . mysqli_error($new) . "<br>"; } } fclose($handle); echo "<script> document.addEventListener('DOMContentLoaded', function() { Swal.fire({ title: 'Success!', text: 'Data uploaded successfully.', icon: 'success', confirmButtonText: 'OK' }); }); </script>"; } else { echo "<script> document.addEventListener('DOMContentLoaded', function() { Swal.fire({ title: 'Error!', text: 'Failed to insert data.', icon: 'error', confirmButtonText: 'OK' }); }); </script>"; } } else { echo "No file uploaded."; } //MANUAL REGISTER// if(isset($_POST['addnew'])){ $index_no = test_input($_POST['index_no']); $surname = test_input($_POST['surname']); $gender = test_input($_POST['gender']); $status = test_input($_POST['status']); $grade = test_input($_POST['grade']); $semester = test_input($_POST['semester']); $prog_name = test_input($_POST['prog_name']); $protocolCode = test_input($_POST['protocol_code']); $checkQuery1 = "SELECT indexNo FROM enrol_generic WHERE indexNo = '$index_no' AND s_code = '$s_code'"; $checkResultt = mysqli_query($new, $checkQuery1); if (mysqli_num_rows($checkResultt) > 0) { // If indexNo already exists, skip insertion and show alert echo "<script> document.addEventListener('DOMContentLoaded', function() { Swal.fire({ title: 'Warning!', text: 'Duplicate index number found: $index_no. already exist.', icon: 'warning', confirmButtonText: 'OK' }); }); </script>"; } else{ $stmt = $con->prepare("insert into enrol_generic (indexNo,stud_name,gender,grade,programme,status,s_code,protocol_code,sem,academicyear) values(?,?,?,?,?,?,?,?,?,?) "); $stmt->execute(array($index_no,$surname,$gender,$grade,$prog_name,$status,$s_code,$protocolCode,$semester,$prog_name)); echo "<script> document.addEventListener('DOMContentLoaded', function() { Swal.fire({ title: 'success!', text: 'New admission is added,the student the continue online', icon: 'success', confirmButtonText: 'OK' }); }); </script>"; } } } } ?> <!doctype html> <html lang="en"> <head> <meta charset="utf-8" /> <title>Admission setup | Admission setup </title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta content="eliosof" name="author" /> <!-- App favicon --> <!-- <link rel="shortcut icon" href="assets/images/favicon.ico"> --> <!-- preloader css --> <link rel="stylesheet" href="assets/css/preloader.min.css" type="text/css" /> <!-- Bootstrap Css --> <link href="assets/css/bootstrap.min.css" id="bootstrap-style" rel="stylesheet" type="text/css" /> <!-- Icons Css --> <link href="assets/css/icons.min.css" rel="stylesheet" type="text/css" /> <!-- App Css--> <link href="assets/css/app.min.css" id="app-style" rel="stylesheet" type="text/css" /> <link href="assets/libs/sweetalert2/sweetalert2.min.css" rel="stylesheet" type="text/css" /> </head> <body> <!-- <body data-layout="horizontal"> --> <!-- Begin page --> <div id="layout-wrapper"> <?php include("includes/header.php");?> <?php include("includes/sidebar.php");?> <div class="main-content"> <div class="page-content"> <div class="container-fluid"> <!-- start page title --> <div class="row"> <div class="col-12"> <div class="page-title-box d-sm-flex align-items-center justify-content-between"> <h4 class="mb-sm-0 font-size-18">CSSPS LIST MANAGEMENT</h4> <div class="page-title-right"> <ol class="breadcrumb m-0"> <li class="breadcrumb-item"><a href="javascript: void(0);">Home</a></li> <li class="breadcrumb-item active">CSSPS LIST MANAGEMENT</li> </ol> </div> </div> </div> </div> <!-- end page title --> <div class="row"> <div class="col-lg-4" style="height: 40px;"> <div class="card bg-primary border-primary text-white-50"> <div class="card-body"> <h5 class="mb-3 text-white"><a style="color:white" href="cssps-list">Placed by CSSPS</a></h5> <h3 style="color:#fff"> <?php $select_css = mysqli_query($new,"SELECT count(aid) as total FROM enrol_generic WHERE s_code = '$s_code' "); if(mysqli_num_rows($select_css) < 1){ $CSSPS = 0; echo "<a style='color:#fff' href='cssps-list'>".$CSSPS."</a>"; } else { $howmany = mysqli_fetch_array($select_css); $CSSPS = $howmany['total']; echo "<a style='color:#fff' href='cssps-list'>".$CSSPS."</a>"; } ?> </h3> </div> </div> </div><!-- end col --> <div class="col-lg-4"> <div class="card bg-success border-success text-white-50"> <div class="card-body"> <h5 class="mb-3 text-white"><a style="color:white" href="completed-list">Completed Online Admission</a></h5> <h3 style="color:#fff"> <?php $select_css = mysqli_query($new,"SELECT count(id) as total1 FROM enrol_details WHERE s_code = '$s_code' and type != 'None'"); if(mysqli_num_rows($select_css) < 1){ $CSSPS1 = 0; echo "<a style='color:#fff' href='completed-list'>".$CSSPS1."</a>"; } else { $howmanyy = mysqli_fetch_array($select_css); $CSSPS1 = $howmanyy['total1']; echo "<a style='color:#fff' href='completed-list'>".$CSSPS1."</a>"; } ?></h3> </div> </div> </div><!-- end col --> <div class="col-lg-4"> <div class="card bg-danger border-info text-white-50"> <div class="card-body"> <h5 class="mb-3 text-white"><a style="color:white" href="yet-to-complete-list">Yet to Perform Online Admission</a></h5> <h3 style="color:#fff"> <?php $yet = $CSSPS - $CSSPS1; echo "<a style='color:#fff' href='yet-to-complete-list'>".$yet."</a>"; ?> </h3> </div> </div> </div><!-- end col --> </div> <br /><br /> <h2> Placement Actions</h2> <?php if($namee != "Admin"){?> <?php $permission_name = 'manage_cssps_list'; if (has_permission($userid, $permission_name,'can_create', $new)) { echo '<button type="button" class="btn btn-primary btn-rounded waves-effect waves-light" data-bs-toggle="modal" data-bs-target=".bs-example-modal-lg">Add new student (Protocol)</button>'; } else { echo '<button type="button" class="btn btn-primary btn-rounded waves-effect waves-light">Add new student (Protocol)</button>'; } ?> <?php } else {?> <button type="button" class="btn btn-primary btn-rounded waves-effect waves-light" data-bs-toggle="modal" data-bs-target=".bs-example-modal-lg">Add new student (Protocol)</button> <?php }?> <?php if($namee != "Admin"){?> <?php $permission_name = 'manage_cssps_list'; if (has_permission($userid, $permission_name,'can_create', $new)) { echo '<a href="protocolfile" class="btn btn-success btn-rounded waves-effect waves-light" role="button">Upload protocol list</a>'; } else { echo '<button type="button" class="btn btn-primary btn-rounded waves-effect waves-light">Upload protocol list</button>'; } ?> <?php } else {?> <a href="protocolfile" class="btn btn-success btn-rounded waves-effect waves-light" role="button">Upload protocol list</a> <!-- <button type="button" class="btn btn-success btn-rounded waves-effect waves-light" data-bs-toggle="modal" data-bs-target=".bs-example-modal-lgsetupload">Upload protocol list</button> --> <?php }?> <?php if($namee != "Admin"){?> <?php $permission_name = 'manage_cssps_list'; if (has_permission($userid, $permission_name,'can_create', $new)) { echo '<button type="button" class="btn btn-dark btn-rounded waves-effect waves-light" data-bs-toggle="modal" data-bs-target=".bs-example-modal-lgcsv">Upload CSSPS file(CSV)</button>'; } else { echo '<button type="button" class="btn btn-primary btn-rounded waves-effect waves-light">Upload CSSPS file(CSV)</button>'; } ?> <?php } else {?> <button type="button" class="btn btn-dark btn-rounded waves-effect waves-light" data-bs-toggle="modal" data-bs-target=".bs-example-modal-lgcsv">Upload CSSPS file(CSV)</button> <?php }?> <div class="modal fade bs-example-modal-lg" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true"> <div class="modal-dialog modal-lg"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="myLargeModalLabel">Register New Placement Entry</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"> <!-- Centering the form and limiting its width --> <div class="container"> <div class="row justify-content-center"> <div class="col-md-8 col-lg-8"> <!-- Adjust the column size as needed --> <form method="POST" class="needs-validation mt-4 pt-2" novalidate> <?php echo csrf_token_tag(); ?> <div class="mb-4"> <label for="exampleInputEmail1" class="form-label">Index Number</label> <input type="text" class="form-control" name="index_no" required> </div> <div class="mb-4"> <label for="exampleInputEmail1" class="form-label">Student name</label> <input type="text" class="form-control" name="surname" required> </div> <div class="mb-4"> <label for="exampleInputEmail1" class="form-label">Gender</label> <select class="form-control" name="gender" required> <option value="">Select</option> <option value="MALE">MALE</option> <option value="FEMALE">FEMALE</option> </select> </div> <div class="mb-4"> <label for="exampleInputEmail1" class="form-label">Boarding Status</label> <select class="form-control" name="status" required> <option value="">Select</option> <option value="DAY">DAY</option> <option value="BOARDING">BOARDING</option> </select> </div> <div class="mb-4"> <select class="form-control" name="academicyear" required> <option value="">---ACADEMIC YEAR---</option> <option value="2024/2025">2024/2025</option> <option value="2025/2026">2025/2026</option> <option value="2026/2027">2026/2027</option> <option value="2027/2028">2027/2028</option> </select> </div> <div class="mb-4"> <label for="exampleInputEmail1" class="form-label">Select Semester</label> <select class="form-control" name="semester" required> <option value="">---SELECT---</option> <?php $selectt = mysqli_query($new,"SELECT * FROM semester WHERE s_code = '$s_code'"); while ($getdataa = mysqli_fetch_array($selectt)) { ?> <option value="<?php echo $getdataa['semester'];?>"><?php echo $getdataa['semester'];?></option> <?php }?> </select> </div> <div class="mb-4"> <label for="exampleInputEmail1" class="form-label">Programme Offered/Learning Area</label> <select class="form-control" name="prog_name" required> <option value="<?php echo $getdata['cid'];?>" >Select program</option> <?php $select_program = mysqli_query($new,"SELECT * FROM programme WHERE s_code = '$s_code'"); while ($prog = mysqli_fetch_array($select_program)) { ?> <option value="<?php echo $prog['program_name'] ;?>"><?php echo $prog['program_name'] ;?></option> <?php }?> </select> </div> <div class="mb-4"> <label for="exampleInputPassword1" class="form-label">Aggregate of Best Six</label> <input type="number" class="form-control" name="grade" required> </div> <?php function generateUniqueProtocolCode() { $randomString = substr(str_shuffle("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ"), 0, 6); $protocolCode = $randomString; return $protocolCode; } $protocolCode = generateUniqueProtocolCode(); ?> <div class="mb-4"> <label for="exampleInputPassword1" class="form-label">Protocal code</label> <input type="text" class="form-control" readonly name="protocol_code" value="<?php echo $protocolCode;?>"> </div> <button type="submit" name="addnew" class="btn btn-primary">Submit</button> </form> </div> </div> </div> </div> </div> </div> </div> <div class="modal fade bs-example-modal-lgsetupload" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true"> <div class="modal-dialog modal-lg"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="myLargeModalLabel" style="color:red">Upload Protocol List with MS Excel (Comma Delimited*.CSV) (Make Sure your Data Import is in the right Academic Year)</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"> <!-- Centering the form and limiting its width --> <div class="container"> <div class="row justify-content-center"> <form class="form-horizontal" method="POST" action="CSSPS-List-protocol.xlsx" enctype="multipart/form-data"> <div class="form-group"> <label for="firstname" class="col-sm-9 control-label">Blank Template</label> <div class="col-sm-9"> <input type="hidden" class="form-control" id="download" name="download" Value="download"> <button type="submit" class="btn btn-primary" name="add"><i class="fas fa-download"></i> Download Template</button> <p><br>(The student IndexNo should NOT duplicate, the upload wizard would ignore any such duplicates, We will however, update the list in the system with the <b>Programme</b> and <b>Boarding status</b> found in the Excel sheet for students whose index numbers are found in both places) </div> </div> </form> <div class="col-md-8 col-lg-8"> <!-- Adjust the column size as needed --> <form method="POST" enctype="multipart/form-data"> <div class="mb-4"> <label for="exampleInputEmail1" class="form-label">Choose file</label> <input type="file" accept=".csv" class="form-control" name="protocolfile" required> </div> <button type="submit" name="protofile" class="btn btn-primary">Submit</button> </form> <br /><br/> <p>(All entries without GENDER would NOT be imported)</p> </div> </div> </div> </div> </div> </div> </div> <div class="modal fade bs-example-modal-lgset" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true"> <div class="modal-dialog modal-lg"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="myLargeModalLabel">Search student details</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"> <!-- Centering the form and limiting its width --> <div class="container"> <div class="row justify-content-center"> <div class="col-md-8 col-lg-8"> <!-- Adjust the column size as needed --> <form method="POST"> <?php echo csrf_token_tag(); ?> <div class="mb-4"> <label for="exampleInputEmail1" class="form-label">Search Student by (Name, IndexNo, Boarding Status)</label> <input type="text" class="form-control" name="school_head" value="<?php echo $head;?>"> </div> <button type="submit" name="submit" class="btn btn-primary">Search</button> </form> </div> </div> </div> </div> </div> </div> </div> <div class="modal fade bs-example-modal-sm" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true"> <div class="modal-dialog modal-sm"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="myLargeModalLabel">Delete unregistered student</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"> <div class="container"> <div class="row justify-content-center"> <div class="col-md-8 col-lg-8"> <!-- Adjust the column size as needed --> <form method="POST"> <?php echo csrf_token_tag(); ?> <h5>Are you want to delete all ??</h5> </div> <button type="submit" name="submit" class="btn btn-primary">Delete</button> </form> </div> </div> </div> </div> </div> </div> </div> <div class="modal fade bs-example-modal-lgcsv" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-hidden="true"> <div class="modal-dialog modal-lg"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="myLargeModalLabel">Upload Placement List with MS Excel (Comma Delimited*.CSV) (Make Sure your Data Import is in the right Academic Year)</h5> <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button> </div> <div class="modal-body"> <!-- Centering the form and limiting its width --> <div class="container"> <div class="row justify-content-center"> <form class="form-horizontal" method="POST" action="CSSPS-List-Template.xlsx" enctype="multipart/form-data"> <div class="form-group"> <label for="firstname" class="col-sm-9 control-label">Blank Template</label> <div class="col-sm-9"> <input type="hidden" class="form-control" id="download" name="download" Value="download"> <button type="submit" class="btn btn-primary" name="add"><i class="fas fa-download"></i> Download Template</button> <p><br>(The student IndexNo should NOT duplicate, the upload wizard would ignore any such duplicates, We will however, update the list in the system with the <b>Programme</b> and <b>Boarding status</b> found in the Excel sheet for students whose index numbers are found in both places) </div> </div> </form> <div class="col-md-8 col-lg-8"> <!-- Adjust the column size as needed --> <form method="POST" enctype="multipart/form-data"> <div class="mb-4"> <select class="form-control" name="academicyear" required> <option value="">---ACADEMIC YEAR---</option> <option value="2024/2025">2024/2025</option> <option value="2025/2026">2025/2026</option> <option value="2026/2027">2026/2027</option> <option value="2027/2028">2027/2028</option> </select> </div> <div class="mb-4"> <label for="exampleInputEmail1" class="form-label">Select Semester</label> <select class="form-control" name="semester" required> <option value="">---SELECT---</option> <?php $selectt = mysqli_query($new,"SELECT * FROM semester WHERE s_code = '$s_code'"); while ($getdataa = mysqli_fetch_array($selectt)) { ?> <option value="<?php echo $getdataa['semester'];?>"><?php echo $getdataa['semester'];?></option> <?php }?> </select> </div> <div class="mb-4"> <label for="exampleInputEmail1" class="form-label">Choose file</label> <input type="file" accept=".csv" class="form-control" name="csv_file" required> </div> <button type="submit" class="btn btn-primary">Submit</button> </form> <br /><br/> <p>(All entries without GENDER would NOT be imported)</p> </div> </div> </div> </div> </div> </div> </div> </div> <!-- End Page-content --> <?php include("includes/footer.php");?> </div> <!-- end main content--> </div> <!-- END layout-wrapper --> <!-- Right Sidebar --> <div class="right-bar"> <div data-simplebar class="h-100"> <div class="rightbar-title d-flex align-items-center p-3"> <h5 class="m-0 me-2">Theme Customizer</h5> <a href="javascript:void(0);" class="right-bar-toggle ms-auto"> <i class="mdi mdi-close noti-icon"></i> </a> </div> <!-- Settings --> <hr class="m-0" /> <div class="p-4"> <h6 class="mb-3">Layout</h6> <div class="form-check form-check-inline"> <input class="form-check-input" type="radio" name="layout" id="layout-vertical" value="vertical"> <label class="form-check-label" for="layout-vertical">Vertical</label> </div> <div class="form-check form-check-inline"> <input class="form-check-input" type="radio" name="layout" id="layout-horizontal" value="horizontal"> <label class="form-check-label" for="layout-horizontal">Horizontal</label> </div> <h6 class="mt-4 mb-3 pt-2">Layout Mode</h6> <div class="form-check form-check-inline"> <input class="form-check-input" type="radio" name="layout-mode" id="layout-mode-light" value="light"> <label class="form-check-label" for="layout-mode-light">Light</label> </div> <div class="form-check form-check-inline"> <input class="form-check-input" type="radio" name="layout-mode" id="layout-mode-dark" value="dark"> <label class="form-check-label" for="layout-mode-dark">Dark</label> </div> <h6 class="mt-4 mb-3 pt-2">Layout Width</h6> <div class="form-check form-check-inline"> <input class="form-check-input" type="radio" name="layout-width" id="layout-width-fuild" value="fuild" onchange="document.body.setAttribute('data-layout-size', 'fluid')"> <label class="form-check-label" for="layout-width-fuild">Fluid</label> </div> <div class="form-check form-check-inline"> <input class="form-check-input" type="radio" name="layout-width" id="layout-width-boxed" value="boxed" onchange="document.body.setAttribute('data-layout-size', 'boxed')"> <label class="form-check-label" for="layout-width-boxed">Boxed</label> </div> <h6 class="mt-4 mb-3 pt-2">Layout Position</h6> <div class="form-check form-check-inline"> <input class="form-check-input" type="radio" name="layout-position" id="layout-position-fixed" value="fixed" onchange="document.body.setAttribute('data-layout-scrollable', 'false')"> <label class="form-check-label" for="layout-position-fixed">Fixed</label> </div> <div class="form-check form-check-inline"> <input class="form-check-input" type="radio" name="layout-position" id="layout-position-scrollable" value="scrollable" onchange="document.body.setAttribute('data-layout-scrollable', 'true')"> <label class="form-check-label" for="layout-position-scrollable">Scrollable</label> </div> <h6 class="mt-4 mb-3 pt-2">Topbar Color</h6> <div class="form-check form-check-inline"> <input class="form-check-input" type="radio" name="topbar-color" id="topbar-color-light" value="light" onchange="document.body.setAttribute('data-topbar', 'light')"> <label class="form-check-label" for="topbar-color-light">Light</label> </div> <div class="form-check form-check-inline"> <input class="form-check-input" type="radio" name="topbar-color" id="topbar-color-dark" value="dark" onchange="document.body.setAttribute('data-topbar', 'dark')"> <label class="form-check-label" for="topbar-color-dark">Dark</label> </div> <h6 class="mt-4 mb-3 pt-2 sidebar-setting">Sidebar Size</h6> <div class="form-check sidebar-setting"> <input class="form-check-input" type="radio" name="sidebar-size" id="sidebar-size-default" value="default" onchange="document.body.setAttribute('data-sidebar-size', 'lg')"> <label class="form-check-label" for="sidebar-size-default">Default</label> </div> <div class="form-check sidebar-setting"> <input class="form-check-input" type="radio" name="sidebar-size" id="sidebar-size-compact" value="compact" onchange="document.body.setAttribute('data-sidebar-size', 'md')"> <label class="form-check-label" for="sidebar-size-compact">Compact</label> </div> <div class="form-check sidebar-setting"> <input class="form-check-input" type="radio" name="sidebar-size" id="sidebar-size-small" value="small" onchange="document.body.setAttribute('data-sidebar-size', 'sm')"> <label class="form-check-label" for="sidebar-size-small">Small (Icon View)</label> </div> <h6 class="mt-4 mb-3 pt-2 sidebar-setting">Sidebar Color</h6> <div class="form-check sidebar-setting"> <input class="form-check-input" type="radio" name="sidebar-color" id="sidebar-color-light" value="light" onchange="document.body.setAttribute('data-sidebar', 'light')"> <label class="form-check-label" for="sidebar-color-light">Light</label> </div> <div class="form-check sidebar-setting"> <input class="form-check-input" type="radio" name="sidebar-color" id="sidebar-color-dark" value="dark" onchange="document.body.setAttribute('data-sidebar', 'dark')"> <label class="form-check-label" for="sidebar-color-dark">Dark</label> </div> <div class="form-check sidebar-setting"> <input class="form-check-input" type="radio" name="sidebar-color" id="sidebar-color-brand" value="brand" onchange="document.body.setAttribute('data-sidebar', 'brand')"> <label class="form-check-label" for="sidebar-color-brand">Brand</label> </div> <h6 class="mt-4 mb-3 pt-2">Direction</h6> <div class="form-check form-check-inline"> <input class="form-check-input" type="radio" name="layout-direction" id="layout-direction-ltr" value="ltr"> <label class="form-check-label" for="layout-direction-ltr">LTR</label> </div> <div class="form-check form-check-inline"> <input class="form-check-input" type="radio" name="layout-direction" id="layout-direction-rtl" value="rtl"> <label class="form-check-label" for="layout-direction-rtl">RTL</label> </div> </div> </div> <!-- end slimscroll-menu--> </div> <!-- /Right-bar --> <!-- Right bar overlay--> <div class="rightbar-overlay"></div> <!-- JAVASCRIPT --> <script src="assets/libs/jquery/jquery.min.js"></script> <script src="assets/libs/bootstrap/js/bootstrap.bundle.min.js"></script> <script src="assets/libs/metismenu/metisMenu.min.js"></script> <script src="assets/libs/simplebar/simplebar.min.js"></script> <script src="assets/libs/node-waves/waves.min.js"></script> <script src="assets/libs/feather-icons/feather.min.js"></script> <!-- pace js --> <script src="assets/libs/pace-js/pace.min.js"></script> <script src="assets/libs/sweetalert2/sweetalert2.min.js"></script> <script src="assets/js/app.js"></script> <script src="assets/js/pages/validation.init.js"></script> </body> </html>
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 60.08 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002