mirror of
https://github.com/sctn4elk/CustomerRewardsRESTAPI.git
synced 2025-01-09 23:24:30 -06:00
44 lines
1.2 KiB
PHP
44 lines
1.2 KiB
PHP
<?php
|
|
|
|
/*
|
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Scripting/PHPClass.php to edit this template
|
|
*/
|
|
|
|
/**
|
|
* Description of ImageModel
|
|
*
|
|
* @author Mike Howard
|
|
*
|
|
* Table: loyalty_value_blob
|
|
* Columns:
|
|
* loyalty_value_id bigint PK
|
|
* loyalty_member_id bigint
|
|
* loyalty_attribute_id bigint
|
|
* loyalty_value_mime_type varchar(255)
|
|
* loyalty_value_blob blob
|
|
*/
|
|
|
|
class ImageModel extends Database {
|
|
use ModelTraits;
|
|
|
|
public function insertImage($inputModel)
|
|
{
|
|
//return var_dump($jsonPayLoad);
|
|
$keys = array_keys($inputModel);
|
|
$n = count($keys);
|
|
|
|
//$sql = "INSERT INTO ImageStore(ImageId,Image) VALUES('$this->image_id','" . mysql_escape_string(file_get_contents($tmp_image)) . "')";
|
|
|
|
$query .= "CALL insert_loyalty_member_image_proc (" . $inputModel[$keys[0]] . ", ";
|
|
for($i = 0; $i < $n-1; $i++) {
|
|
$query .= "'" . $inputModel[$keys[$i]] . "', ";
|
|
}
|
|
$query .= $inputModel[$keys[$i]] . ")";
|
|
//return var_dump($query);
|
|
|
|
$rowCount = $this->processImage($query);
|
|
return $rowCount;
|
|
}
|
|
}
|