Files
WrenchBoradWeb/www-api/app/Controllers/PromoAdmin.php
T
CHIEFSOFT\ameye 5486b31f27 promo add list
2024-11-17 11:51:37 -05:00

32 lines
970 B
PHP

<?php
namespace App\Controllers;
use CodeIgniter\API\ResponseTrait;
class PromoAdmin extends BaseController
{
use ResponseTrait;
public function promoList(){
log_message('critical', "***** ***** PromoAdmin::promoList ****" );
// $in = $this->request->getPostGet();
$raw_json = file_get_contents('php://input');
$in = json_decode($raw_json, true);
$out = [];
return $this->respond( $this->summaryReturnData($in,$out), 200);
}
public function promoAddRef(){
log_message('critical', "***** ***** PromoAdmin::promoAddRef ****" );
// $in = $this->request->getPostGet();
$raw_json = file_get_contents('php://input');
$in = json_decode($raw_json, true);
$out = [];
$in["action"] = WRENCHBOARD_PROMOADMIN_ADDLIST;
$ret = $this->wrenchboard->wrenchboard_api($in, $out);
return $this->respond( $this->summaryReturnData($in,$out), 200);
}
}