CHANGE_NO : RV
This commit is contained in:
parent
9697dbf569
commit
98bc8f1006
@ -675,3 +675,5 @@ $routes->group('test', function($routes) {
|
||||
$routes->post('api/saveForm', 'TestingController::saveForm');
|
||||
$routes->get('insurerRFQRemainder', 'LeadsController::remainderForQcr');
|
||||
});
|
||||
$routes->cli('cli/testcli', 'TestingController::testcli');
|
||||
|
||||
|
||||
@ -9,6 +9,12 @@ use CodeIgniter\API\ResponseTrait;
|
||||
class TestingController extends BaseController
|
||||
{
|
||||
use ResponseTrait;
|
||||
protected $myLogger;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->myLogger = \Config\Services::mylogger();
|
||||
}
|
||||
|
||||
public function saveForm()
|
||||
{
|
||||
@ -22,4 +28,12 @@ class TestingController extends BaseController
|
||||
'data' => $data
|
||||
]);
|
||||
}
|
||||
|
||||
public function testcli()
|
||||
{ echo "hi";
|
||||
$this->myLogger->logme('error', "test log");
|
||||
echo "hi 2";
|
||||
log_message('error', 'test message for log_message_function');
|
||||
echo "hi 3";
|
||||
}
|
||||
}
|
||||
|
||||
@ -1691,6 +1691,7 @@
|
||||
// // Update the input value
|
||||
// input.value = value;
|
||||
// }
|
||||
|
||||
|
||||
|
||||
$('#self').change(function() {
|
||||
|
||||
5829
app/Views/view_rfq_non_eb_new.php
Normal file
5829
app/Views/view_rfq_non_eb_new.php
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user