CHANGE_STAFF_UPDATE_PASSWORD : AADHAVAN
This commit is contained in:
parent
b2f7c2b067
commit
37bcaae0b6
@ -20,7 +20,9 @@ use CodeIgniter\Router\RouteCollection;
|
||||
$routes->match(['get','post'],'/verify_otp','StaffController::verify_otp');
|
||||
$routes->match(['get','post'],'/change_password','StaffController::change_password');
|
||||
$routes->post('status_staff','StaffController::status_staff');
|
||||
$routes->post('staff_password_update','StaffController::staff_password_update');
|
||||
|
||||
|
||||
|
||||
$routes->match(['get','post'],'/','ClientController::login');
|
||||
$routes->get('/client_logout','ClientController::client_logout');
|
||||
|
||||
@ -335,6 +335,7 @@ class StaffController extends BaseController
|
||||
if($this->request->getmethod() == 'POST')
|
||||
{
|
||||
$staffData = $this->request->getVar();
|
||||
print_r($staffData);die;
|
||||
$staff_id = $this->request->getVar('staff_id');
|
||||
$this->StaffModel->where('staff_id', $staff_id )->set($staffData)->update();
|
||||
$this->session->setTempdata('mail_success', "Password set sucessfully",3);
|
||||
@ -344,6 +345,24 @@ class StaffController extends BaseController
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public function staff_password_update()
|
||||
{
|
||||
if($this->request->getmethod() == 'POST')
|
||||
{
|
||||
$staffData = $this->request->getVar();
|
||||
|
||||
$staff_id = $this->request->getVar('id');
|
||||
|
||||
$this->StaffModel->where('staff_id', $staff_id )->set($staffData)->update();
|
||||
$this->session->setTempdata('mail_success', "Password set sucessfully",3);
|
||||
return redirect()->to(base_url()."staff_list");
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public function status_staff()
|
||||
{
|
||||
try {
|
||||
|
||||
@ -2,6 +2,12 @@
|
||||
<!-- Start Page Content here -->
|
||||
<!-- ============================================================== -->
|
||||
|
||||
<style>
|
||||
.dt-buttons.btn-group.flex-wrap{
|
||||
display: none !important;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div class="content-page">
|
||||
<!-- Start Content-->
|
||||
<div class="container-fluid">
|
||||
|
||||
@ -63,9 +63,9 @@
|
||||
<div class="dropdown-menu dropdown-menu-right">
|
||||
<a class="dropdown-item" href="<?= base_url()."client_edit?client_id=".md5($value['client_id']); ?>" > <i class='mdi mdi-pencil-outline mr-1' style="margin-right: 16px !important;margin-left: 5px;"></i>Edit</a>
|
||||
<?php if($value['is_active'] == 1): ?>
|
||||
<a class="dropdown-item" data-id="<?php echo $value['client_id']; ?>" data-isactive="<?php echo $value['is_active']; ?>" title="Deactivate" onclick="statusChange(this)"><i class="fa fa-bicycle"></i><i class="fa fa-times" style="font-size: x-small;margin-right:10px"></i>Deactivate</a>
|
||||
<a class="dropdown-item" data-id="<?php echo $value['client_id']; ?>" data-isactive="<?php echo $value['is_active']; ?>" title="Deactivate" onclick="statusChange(this)"><i class="fa fa-user"></i><i class="fa fa-times" style="font-size: x-small;margin-right:10px"></i>Deactivate</a>
|
||||
<?php else: ?>
|
||||
<a class="dropdown-item" data-id="<?php echo $value['client_id']; ?>" data-isactive="<?php echo $value['is_active']; ?>" title="Activate" onclick="statusChange(this)"><i class="fa fa-bicycle" style="margin-right:10px"></i>Activate</a>
|
||||
<a class="dropdown-item" data-id="<?php echo $value['client_id']; ?>" data-isactive="<?php echo $value['is_active']; ?>" title="Activate" onclick="statusChange(this)"><i class="fa fa-user" style="margin-right:10px"></i>Activate</a>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -11,7 +11,11 @@
|
||||
<div class="col-12">
|
||||
<div class="page-title-box page-title-box-alt">
|
||||
<h4 class="page-title">Create Staff</h4>
|
||||
|
||||
<div class="page-title-right">
|
||||
<button type="reset" onclick="window.history.back()" class="btn btn-secondary waves-effect">
|
||||
Back to List
|
||||
</button>
|
||||
<ol class="breadcrumb m-0">
|
||||
<!-- <li class="breadcrumb-item"><a href="javascript: void(0);">Minton</a></li>
|
||||
<li class="breadcrumb-item"><a href="javascript: void(0);">Pages</a></li>
|
||||
@ -30,93 +34,94 @@
|
||||
<div class="card">
|
||||
<div class="card-body">
|
||||
|
||||
<h5 class="mb-3 text-uppercase bg-light p-2"><i class="mdi mdi-account-circle mr-1"></i> Personal Info</h5>
|
||||
|
||||
<form method="post"
|
||||
<?php if(isset($staffData)){ ?> action="<?= base_url()."staff_edit"; ?>"
|
||||
<?php } else { ?> action="<?= base_url()."staff_create"; ?>" <?php } ?>
|
||||
class="parsley-examples">
|
||||
<?php if(isset($staffData)){ ?> action="<?= base_url()."staff_edit"; ?>"
|
||||
<?php } else { ?> action="<?= base_url()."staff_create"; ?>" <?php } ?>
|
||||
class="parsley-examples">
|
||||
|
||||
|
||||
<?php if(isset($staffData)){ ?>
|
||||
<input type="hidden" required name="id" value="<?= $staffData->staff_id; ?>" id='id' >
|
||||
<?php } ?>
|
||||
<?php if(isset($staffData)){ ?>
|
||||
<input type="hidden" required name="id" value="<?= $staffData->staff_id; ?>" id='id' >
|
||||
<?php } ?>
|
||||
|
||||
<div class="form-row">
|
||||
|
||||
<div class="form-group col-md-4">
|
||||
<label for="role">Role<span class="text-danger">*</span></label>
|
||||
<select class="form-control" id="selectize-select" name="role" id="role" parsley-trigger="change" required >
|
||||
<?php if(isset($staffData)){ ?> <option value="<?= $staffData->role; ?>"> <?= $staffData->role; ?> </option> <?php } ?>
|
||||
<option >Select Role</option>
|
||||
<option value="Admin">Admin</option>
|
||||
<option value="Staff">Staff</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="form-group col-md-4">
|
||||
<label for="staffName">Staff Name<span class="text-danger">*</span></label>
|
||||
<input type="text" name="name" value="<?php if(isset($staffData)){ echo $staffData->name; } ?>" parsley-trigger="change" required placeholder="Enter staff name" class="form-control" id="staffName">
|
||||
</div>
|
||||
|
||||
<div class="form-group col-md-4">
|
||||
<label for="mobile">Mobile<span class="text-danger">*</span></label>
|
||||
<input type="text" name="mobile_no" value="<?php if(isset($staffData)){ echo $staffData->mobile_no; } ?>" parsley-trigger="change" required placeholder="Enter Mobile" class="form-control" id="mobile">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="form-row">
|
||||
<div class="form-row">
|
||||
|
||||
<div class="form-group col-md-4">
|
||||
<label for="email">Email<span class="text-danger">*</span></label>
|
||||
<input type="email" name="email" value="<?php if(isset($staffData)){ echo $staffData->email; } ?>" parsley-trigger="change" required placeholder="Enter Email" class="form-control" id="email">
|
||||
</div>
|
||||
<?php if(!isset($staffData)){ ?>
|
||||
<div class="form-group col-md-4">
|
||||
<label for="pass1">Password<span class="text-danger">*</span></label>
|
||||
<input id="pass1" type="password" placeholder="Password" required class="form-control">
|
||||
<label for="role">Role<span class="text-danger">*</span></label>
|
||||
<select class="form-control" id="selectize-select" name="role" id="role" parsley-trigger="change" required >
|
||||
<?php if(isset($staffData)){ ?> <option value="<?= $staffData->role; ?>"> <?= $staffData->role; ?> </option> <?php } ?>
|
||||
<option >Select Role</option>
|
||||
<option value="Admin">Admin</option>
|
||||
<option value="Staff">Staff</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="form-group col-md-4">
|
||||
<label for="passWord2">Confirm Password <span class="text-danger">*</span></label>
|
||||
<input data-parsley-equalto="#pass1" type="password" name="password" required placeholder="Password" class="form-control" id="passWord2">
|
||||
<label for="staffName">Staff Name<span class="text-danger">*</span></label>
|
||||
<input type="text" name="name" value="<?php if(isset($staffData)){ echo $staffData->name; } ?>" parsley-trigger="change" required placeholder="Enter staff name" class="form-control" id="staffName">
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="form-row">
|
||||
|
||||
<div class="form-group col-md-8">
|
||||
<label for="address">Address</label>
|
||||
<input type="text" name="address" value="<?php if(isset($staffData)){ echo $staffData->address; } ?>" parsley-trigger="change" placeholder="Enter Address" class="form-control" id="address">
|
||||
</div>
|
||||
|
||||
<div class="form-group col-md-4">
|
||||
<label for="city">City</label>
|
||||
<input type="text" value="<?php if(isset($staffData)){ echo $staffData->city; } ?>" placeholder="Enter City" name="city" class="form-control" id="city">
|
||||
</div>
|
||||
|
||||
|
||||
<div class="form-group col-md-4">
|
||||
<label for="mobile">Mobile<span class="text-danger">*</span></label>
|
||||
<input type="text" name="mobile_no" value="<?php if(isset($staffData)){ echo $staffData->mobile_no; } ?>" parsley-trigger="change" required placeholder="Enter Mobile" class="form-control" id="mobile">
|
||||
</div>
|
||||
|
||||
|
||||
<div class="form-group col-md-4">
|
||||
<label for="state">State </label>
|
||||
<input type="text" name="state" value="<?php if(isset($staffData)){ echo $staffData->state; } ?>" placeholder="Enter State" class="form-control" id="state">
|
||||
</div>
|
||||
|
||||
<div class="form-group col-md-4">
|
||||
<label for="country">Country</label>
|
||||
<input type="text" name="country" value="<?php if(isset($staffData)){ echo $staffData->country; } ?>" placeholder="Enter country" class="form-control" id="country">
|
||||
<div class="form-row">
|
||||
|
||||
<div class="form-group col-md-4">
|
||||
<label for="email">Email<span class="text-danger">*</span></label>
|
||||
<input type="email" name="email" value="<?php if(isset($staffData)){ echo $staffData->email; } ?>" parsley-trigger="change" required placeholder="Enter Email" class="form-control" id="email">
|
||||
</div>
|
||||
<?php if(!isset($staffData)){ ?>
|
||||
<div class="form-group col-md-4">
|
||||
<label for="pass1">Password<span class="text-danger">*</span></label>
|
||||
<input id="pass1" type="password" placeholder="Password" required class="form-control">
|
||||
</div>
|
||||
|
||||
<div class="form-group col-md-4">
|
||||
<label for="passWord2">Confirm Password <span class="text-danger">*</span></label>
|
||||
<input data-parsley-equalto="#pass1" type="password" name="password" required placeholder="Password" class="form-control" id="passWord2">
|
||||
</div>
|
||||
<?php } ?>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="form-group col-md-4">
|
||||
<label for="pin_code">PIN </label>
|
||||
<input type="text" name="pin_code" value="<?php if(isset($staffData)){ echo $staffData->pin_code; } ?>" placeholder="Enter PIN" class="form-control" id="pin_code">
|
||||
</div>
|
||||
<div class="form-row">
|
||||
|
||||
<div class="form-group col-md-8">
|
||||
<label for="address">Address</label>
|
||||
<input type="text" name="address" value="<?php if(isset($staffData)){ echo $staffData->address; } ?>" parsley-trigger="change" placeholder="Enter Address" class="form-control" id="address">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="form-group col-md-4">
|
||||
<label for="city">City</label>
|
||||
<input type="text" value="<?php if(isset($staffData)){ echo $staffData->city; } ?>" placeholder="Enter City" name="city" class="form-control" id="city">
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="form-group col-md-4">
|
||||
<label for="state">State </label>
|
||||
<input type="text" name="state" value="<?php if(isset($staffData)){ echo $staffData->state; } ?>" placeholder="Enter State" class="form-control" id="state">
|
||||
</div>
|
||||
|
||||
<div class="form-group col-md-4">
|
||||
<label for="country">Country</label>
|
||||
<input type="text" name="country" value="<?php if(isset($staffData)){ echo $staffData->country; } ?>" placeholder="Enter country" class="form-control" id="country">
|
||||
</div>
|
||||
|
||||
<div class="form-group col-md-4">
|
||||
<label for="pin_code">PIN </label>
|
||||
<input type="text" name="pin_code" value="<?php if(isset($staffData)){ echo $staffData->pin_code; } ?>" placeholder="Enter PIN" class="form-control" id="pin_code">
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
@ -128,12 +133,45 @@
|
||||
<button class="btn btn-primary waves-effect waves-light mr-1" type="submit">
|
||||
Submit
|
||||
</button>
|
||||
<button type="reset" onclick="window.history.back()" class="btn btn-secondary waves-effect">
|
||||
Cancel
|
||||
</button>
|
||||
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
|
||||
|
||||
<form method="post"
|
||||
<?php if(isset($staffData)){ ?> action="<?= base_url()."staff_password_update"; }?>" class="parsley-examples">
|
||||
|
||||
|
||||
<?php if(isset($staffData)){ ?>
|
||||
<h5 class="mb-3 text-uppercase bg-light p-2"><i class="mdi mdi-account-circle mr-1"></i> Change Password</h5>
|
||||
<input type="hidden" required name="id" value="<?= $staffData->staff_id; ?>" id='id' >
|
||||
<div class="form-row">
|
||||
|
||||
<div class="form-group col-md-4">
|
||||
<label for="pass1">Password<span class="text-danger">*</span></label>
|
||||
<input id="pass1" type="password" placeholder="Password" class="form-control">
|
||||
</div>
|
||||
|
||||
<div class="form-group col-md-4">
|
||||
<label for="passWord2">Confirm Password <span class="text-danger">*</span></label>
|
||||
<input data-parsley-equalto="#pass1" type="password" name="password" placeholder="Password" class="form-control" id="passWord2">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group text-right m-b-0">
|
||||
<button class="btn btn-primary waves-effect waves-light mr-1" type="submit">
|
||||
Submit
|
||||
</button>
|
||||
<?php } ?>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
</form>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div> <!-- end card -->
|
||||
|
||||
@ -63,9 +63,9 @@
|
||||
<div class="dropdown-menu dropdown-menu-right">
|
||||
<a class="dropdown-item" href="<?= base_url()."staff_edit?staff_id=".md5($value['staff_id']); ?>" ><i class='mdi mdi-pencil-outline mr-1' style="margin-right: 16px !important;margin-left: 5px;"></i>Edit</a>
|
||||
<?php if($value['is_active'] == 1): ?>
|
||||
<a class="dropdown-item" data-id="<?php echo $value['staff_id']; ?>" data-isactive="<?php echo $value['is_active']; ?>" title="Deactivate" onclick="statusChange(this)"><i class="fa fa-bicycle"></i><i class="fa fa-times" style="font-size: x-small;margin-right:10px"></i>Deactivate</a>
|
||||
<a class="dropdown-item" data-id="<?php echo $value['staff_id']; ?>" data-isactive="<?php echo $value['is_active']; ?>" title="Deactivate" onclick="statusChange(this)"><i class="fa fa-user"></i><i class="fa fa-times" style="font-size: x-small;margin-right:10px"></i>Deactivate</a>
|
||||
<?php else: ?>
|
||||
<a class="dropdown-item" data-id="<?php echo $value['staff_id']; ?>" data-isactive="<?php echo $value['is_active']; ?>" title="Activate" onclick="statusChange(this)"><i class="fa fa-bicycle" style="margin-right:10px"></i>Activate</a>
|
||||
<a class="dropdown-item" data-id="<?php echo $value['staff_id']; ?>" data-isactive="<?php echo $value['is_active']; ?>" title="Activate" onclick="statusChange(this)"><i class="fa fa-user" style="margin-right:10px"></i>Activate</a>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716526180;_ci_previous_url|s:50:"http://localhost/bb_sign/index.php/template_create";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1717051357;_ci_previous_url|s:91:"http://localhost/bb_sign/index.php/service_view?service_id=a87ff679a2f3e71d9181a67b7542122c";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1717046806;_ci_previous_url|s:94:"http://localhost/bb_sign/index.php/template_create?service_id=a87ff679a2f3e71d9181a67b7542122c";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716548874;_ci_previous_url|s:35:"http://localhost/bb_sign/index.php/";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1717052866;_ci_previous_url|s:93:"http://localhost/bb_sign/index.php/template_edit?template_id=c51ce410c124a10e0db5e4b97fc2af39";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716520774;_ci_previous_url|s:47:"http://localhost/bb_sign/index.php/service_list";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1717052077;_ci_previous_url|s:93:"http://localhost/bb_sign/index.php/template_edit?template_id=c51ce410c124a10e0db5e4b97fc2af39";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716520445;_ci_previous_url|s:47:"http://localhost/bb_sign/index.php/service_list";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716984479;_ci_previous_url|s:50:"http://localhost/bb_sign/index.php/template_create";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716992700;_ci_previous_url|s:50:"http://localhost/bb_sign/index.php/template_create";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716980166;_ci_previous_url|s:50:"http://localhost/bb_sign/index.php/template_create";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1717045842;_ci_previous_url|s:91:"http://localhost/bb_sign/index.php/service_view?service_id=a87ff679a2f3e71d9181a67b7542122c";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716530055;_ci_previous_url|s:39:"http://localhost/bb_sign/index.php/test";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716983685;_ci_previous_url|s:50:"http://localhost/bb_sign/index.php/template_create";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716984479;_ci_previous_url|s:47:"http://localhost/bb_sign/index.php/service_list";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716550428;_ci_previous_url|s:50:"http://localhost/bb_sign/index.php/template_create";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716545289;_ci_previous_url|s:35:"http://localhost/bb_sign/index.php/";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716550840;_ci_previous_url|s:50:"http://localhost/bb_sign/index.php/template_create";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1717051774;_ci_previous_url|s:91:"http://localhost/bb_sign/index.php/service_view?service_id=a87ff679a2f3e71d9181a67b7542122c";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716976864;_ci_previous_url|s:47:"http://localhost/bb_sign/index.php/service_list";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716547194;_ci_previous_url|s:35:"http://localhost/bb_sign/index.php/";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1717039444;_ci_previous_url|s:94:"http://localhost/bb_sign/index.php/template_create?service_id=a87ff679a2f3e71d9181a67b7542122c";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716527378;_ci_previous_url|s:50:"http://localhost/bb_sign/index.php/template_create";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716540562;_ci_previous_url|s:50:"http://localhost/bb_sign/index.php/template_create";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1717041169;_ci_previous_url|s:94:"http://localhost/bb_sign/index.php/template_create?service_id=a87ff679a2f3e71d9181a67b7542122c";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716979714;_ci_previous_url|s:47:"http://localhost/bb_sign/index.php/service_list";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1717049247;_ci_previous_url|s:91:"http://localhost/bb_sign/index.php/service_view?service_id=a87ff679a2f3e71d9181a67b7542122c";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1717048177;_ci_previous_url|s:91:"http://localhost/bb_sign/index.php/service_view?service_id=a87ff679a2f3e71d9181a67b7542122c";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716984038;_ci_previous_url|s:50:"http://localhost/bb_sign/index.php/template_create";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1717048547;_ci_previous_url|s:93:"http://localhost/bb_sign/index.php/template_edit?template_id=d3d9446802a44259755d38e6d163e820";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1717052866;_ci_previous_url|s:96:"http://localhost/bb_sign/index.php/template_preview?template_id=c20ad4d76fe97759aa27a0c99bff6710";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1717050471;_ci_previous_url|s:93:"http://localhost/bb_sign/index.php/template_edit?template_id=a87ff679a2f3e71d9181a67b7542122c";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716550122;_ci_previous_url|s:50:"http://localhost/bb_sign/index.php/template_create";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716550840;_ci_previous_url|s:48:"http://localhost/bb_sign/index.php/client_create";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716980477;_ci_previous_url|s:91:"http://localhost/bb_sign/index.php/service_view?service_id=a87ff679a2f3e71d9181a67b7542122c";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716533229;_ci_previous_url|s:50:"http://localhost/bb_sign/index.php/template_create";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716546888;_ci_previous_url|s:35:"http://localhost/bb_sign/index.php/";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1717052424;_ci_previous_url|s:96:"http://localhost/bb_sign/index.php/template_preview?template_id=c20ad4d76fe97759aa27a0c99bff6710";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716975080;_ci_previous_url|s:50:"http://localhost/bb_sign/index.php/template_create";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716976519;_ci_previous_url|s:91:"http://localhost/bb_sign/index.php/service_view?service_id=a87ff679a2f3e71d9181a67b7542122c";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1717039134;_ci_previous_url|s:91:"http://localhost/bb_sign/index.php/service_view?service_id=a87ff679a2f3e71d9181a67b7542122c";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716533229;_ci_previous_url|s:50:"http://localhost/bb_sign/index.php/template_create";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716532881;_ci_previous_url|s:50:"http://localhost/bb_sign/index.php/template_create";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716548238;_ci_previous_url|s:35:"http://localhost/bb_sign/index.php/";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716975428;_ci_previous_url|s:47:"http://localhost/bb_sign/index.php/service_list";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1717048881;_ci_previous_url|s:93:"http://localhost/bb_sign/index.php/template_edit?template_id=d3d9446802a44259755d38e6d163e820";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716992700;_ci_previous_url|s:50:"http://localhost/bb_sign/index.php/template_create";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1717050974;_ci_previous_url|s:94:"http://localhost/bb_sign/index.php/template_create?service_id=a87ff679a2f3e71d9181a67b7542122c";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716549714;_ci_previous_url|s:50:"http://localhost/bb_sign/index.php/template_create";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716976204;_ci_previous_url|s:47:"http://localhost/bb_sign/index.php/service_list";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716549262;_ci_previous_url|s:45:"http://localhost/bb_sign/index.php/staff_list";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716983226;_ci_previous_url|s:50:"http://localhost/bb_sign/index.php/template_create";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716519977;_ci_previous_url|s:47:"http://localhost/bb_sign/index.php/service_list";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716540102;_ci_previous_url|s:50:"http://localhost/bb_sign/index.php/template_create";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1717047248;_ci_previous_url|s:94:"http://localhost/bb_sign/index.php/template_create?service_id=a87ff679a2f3e71d9181a67b7542122c";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1717047714;_ci_previous_url|s:91:"http://localhost/bb_sign/index.php/service_view?service_id=a87ff679a2f3e71d9181a67b7542122c";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716532469;_ci_previous_url|s:50:"http://localhost/bb_sign/index.php/template_create";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716544284;_ci_previous_url|s:40:"http://localhost/bb_sign/index.php/staff";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716520774;_ci_previous_url|s:45:"http://localhost/bb_sign/index.php/staff_list";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716543958;_ci_previous_url|s:48:"http://localhost/bb_sign/index.php/client_create";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1717041527;_ci_previous_url|s:91:"http://localhost/bb_sign/index.php/service_view?service_id=a87ff679a2f3e71d9181a67b7542122c";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
@ -1 +0,0 @@
|
||||
__ci_last_regenerate|i:1716982803;_ci_previous_url|s:50:"http://localhost/bb_sign/index.php/template_create";is_staff_logged_in|s:1:"1";logged_in_staff_role|s:5:"Admin";logged_in_staff_name|s:7:"Gowtham";
|
||||
Loading…
Reference in New Issue
Block a user