68 lines
1.0 KiB
PHP
68 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace App\ControllerCleaners;
|
|
|
|
use App\Controllers\BaseController;
|
|
use CodeIgniter\HTTP\ResponseInterface;
|
|
|
|
use App\Models\ThzMasterModel;
|
|
use App\Models\ThzMasterNotesModel;
|
|
|
|
class ThzControllerCleaner extends BaseController
|
|
{
|
|
|
|
protected $thzMasterModel;
|
|
protected $thzMasterNotesModel;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->thzMasterModel = new ThzMasterModel();
|
|
$this->thzMasterNotesModel = new ThzMasterNotesModel();
|
|
}
|
|
|
|
public function index()
|
|
{
|
|
//
|
|
}
|
|
|
|
public function ticketCreation($data){
|
|
|
|
if(empty($data)){
|
|
return false;
|
|
}
|
|
|
|
$cleanedData = $data;
|
|
|
|
return $cleanedData;
|
|
|
|
|
|
}
|
|
|
|
public function ticketList($data){
|
|
|
|
if(empty($data)){
|
|
return false;
|
|
}
|
|
|
|
$cleanedData = $data;
|
|
|
|
return $cleanedData;
|
|
|
|
}
|
|
|
|
public function ticketConversation($data){
|
|
|
|
if(empty($data)){
|
|
return false;
|
|
}
|
|
|
|
$cleanedData = $data;
|
|
|
|
return $cleanedData;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|