You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
117 lines
3.5 KiB
PHTML
117 lines
3.5 KiB
PHTML
4 months ago
|
<?php
|
||
|
// Class Library
|
||
|
use App\ClassLib\MiscLib;
|
||
|
?>
|
||
|
|
||
|
<!-- Extend area where template is defined -->
|
||
|
<?= $this->extend('templates/adminlte/generalcontent') ?>
|
||
|
<!-- .Extend -->
|
||
|
|
||
|
<!-- Title of the page -->
|
||
|
<?= $this->section('title') ?>New User from List<?= $this->endSection() ?>
|
||
|
<!-- .Title -->
|
||
|
|
||
|
<!-- CSS of the page -->
|
||
|
<?= $this->section('css') ?>
|
||
|
|
||
|
<!-- DataTables -->
|
||
|
<link rel="stylesheet" href="<?= base_url() ?>adminlte/plugins/datatables-bs4/css/dataTables.bootstrap4.min.css">
|
||
|
<link rel="stylesheet" href="<?= base_url() ?>adminlte/plugins/datatables-responsive/css/responsive.bootstrap4.min.css">
|
||
|
|
||
|
|
||
|
<?= $this->endSection() ?>
|
||
|
<!-- .CSS -->
|
||
|
|
||
|
<!-- body attribute - class definition -->
|
||
|
<?= $this->section('bodyclass') ?>sidebar-mini<?= $this->endSection() ?>
|
||
|
<!-- .body attribute -->
|
||
|
|
||
|
<!-- Container title -->
|
||
|
<?= $this->section('containertitle') ?>New User from Employee List<?= $this->endSection() ?>
|
||
|
<!-- .Container title -->
|
||
|
|
||
|
<!-- Active breadcrumb -->
|
||
|
<?= $this->section('breadcrumbs') ?>
|
||
|
<li class="breadcrumb-item"><a href="/adminuser">User Maintenance</a></li>
|
||
|
<li class="breadcrumb-item active">New User from List</li>
|
||
|
<?= $this->endSection() ?>
|
||
|
<!-- .Active breadcrumb -->
|
||
|
|
||
|
<!-- Main content -->
|
||
|
<?= $this->section('main') ?>
|
||
|
|
||
|
|
||
|
<div class="row">
|
||
|
<div class="col-12">
|
||
|
<div class="card">
|
||
|
<div class="card-header">
|
||
|
<h3 class="card-title">List of Users</h3>
|
||
|
</div>
|
||
|
<div class="card-body">
|
||
|
<table id="tblEmployee" class="table table-bordered">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>Employee ID</th>
|
||
|
<th>Employee Name</th>
|
||
|
<th>Action</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
<?php foreach ($employeeList as $employee): ?>
|
||
|
<tr>
|
||
|
<td><?= $employee->company_issued_id ?></td>
|
||
|
<td><?= $employee->last_name.", ".$employee->first_name ?></td>
|
||
|
<td>
|
||
|
<?php
|
||
|
$searchedEmp = auth()->getProvider()->where('employee_id', $employee->company_issued_id)->first();
|
||
|
|
||
|
if($searchedEmp == null):
|
||
|
?>
|
||
|
<a href="/adminuser/newuserfromemplist/<?= $employee->company_issued_id ?>" class="btn btn-secondary"><i class="fas fa-user-plus"></i> Create System Account</a>
|
||
|
<?php else: ?>
|
||
|
<p>Account Created Already</p>
|
||
|
<?php endif; ?>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<?php endforeach; ?>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<?= $this->endSection() ?>
|
||
|
<!-- .Main content -->
|
||
|
|
||
|
<!-- Javascript -->
|
||
|
|
||
|
<?= $this->section('js') ?>
|
||
|
|
||
|
<!-- DataTables & Plugins -->
|
||
|
<script src="<?= base_url() ?>adminlte/plugins/datatables/jquery.dataTables.min.js"></script>
|
||
|
<script src="<?= base_url() ?>adminlte/plugins/datatables-bs4/js/dataTables.bootstrap4.min.js"></script>
|
||
|
<script src="<?= base_url() ?>adminlte/plugins/datatables-responsive/js/dataTables.responsive.min.js"></script>
|
||
|
<script src="<?= base_url() ?>adminlte/plugins/datatables-responsive/js/responsive.bootstrap4.min.js"></script>
|
||
|
|
||
|
|
||
|
<script>
|
||
|
|
||
|
$(document).ready(function() {
|
||
|
$('#tblEmployee').DataTable({
|
||
|
"paging": true,
|
||
|
"lengthChange": false,
|
||
|
"searching": true,
|
||
|
"ordering": true,
|
||
|
"info": true,
|
||
|
"autoWidth": false,
|
||
|
"responsive": true,
|
||
|
});
|
||
|
});
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<?= $this->endSection() ?>
|
||
|
|
||
|
<!-- .Javascript -->
|