function merchant_rating_submit() { global $user; $redirect = $_POST['redirect']; $name = $_POST['name']; $city = $_POST['city']; $typologyid = $_POST['typologyid']; $nation = $_POST['nation']; // JRequest::getVar('nation'); $email = $_POST['email']; $value1 = $_POST['hfvalue1']; $value2 = $_POST['hfvalue2']; $value3 = $_POST['hfvalue3']; $value4 = $_POST['hfvalue4']; $value5 = $_POST['hfvalue5']; $totale = $_POST['hftotale']; $pregi = $_POST['pregi']; $difetti = $_POST['difetti']; $merchantId = $_POST['merchantid']; $label = $_POST['label']; $user = $user; $cultureCode = $GLOBALS['bfi_lang']; $userId = null; if (!empty($user) && $user->uid != 0) { $userId = $user->uid; } $checkin = $_POST['checkin']; $resourceId = $_POST['resourceId']; // $checkin= $_SESSION['search.params']['checkin']->format('m/d/Y'); // $resourceId= $_SESSION['search.params']['resourceId']; $hashorder = $_POST['hashorder']; $orderId = null; if (empty($resourceId)) { $resourceId = null; } if (!empty($hashorder)) { $orderId = BFCHelper::decrypt($hashorder); if (!is_numeric($orderId)) { $orderId = null; } } $return = BFCHelper::setRating($name, $city, $typologyid, $email, $nation, $merchantId, $value1, $value2, $value3, $value4, $value5, $totale, $pregi, $difetti, $userId, $cultureCode, $checkin, $resourceId, $orderId, $label); if ($return < 1) { set_transient('temporary_message', __('There was some issue posting your review. Please try back later.'), 60 * 60 * 12); } else { set_transient('temporary_message', __('Your review was succesfully posted.'), 60 * 60 * 12); } wp_redirect($redirect); exit; }
function sendRating() { $name = JRequest::getVar('name'); $city = JRequest::getVar('city'); $typologyid = FormHelper::getOptionsFromSelect($_POST, 'typologyid'); $nation = FormHelper::getOptionsFromSelect($_POST, 'nation'); // JRequest::getVar('nation'); $email = JRequest::getVar('email'); $value1 = JRequest::getVar('hfvalue1'); $value2 = JRequest::getVar('hfvalue2'); $value3 = JRequest::getVar('hfvalue3'); $value4 = JRequest::getVar('hfvalue4'); $value5 = JRequest::getVar('hfvalue5'); $totale = JRequest::getVar('hftotale'); $pregi = JRequest::getVar('pregi'); $difetti = JRequest::getVar('difetti'); $merchantId = JRequest::getVar('merchantid'); $label = JRequest::getVar('label'); $user = JFactory::getUser(); $cultureCode = JRequest::getVar('cultureCode'); $userId = null; if ($user->id != 0) { $userId = $user->id; } $checkin = JRequest::getVar('checkin'); $resourceId = JRequest::getVar('resourceId'); $hashorder = JRequest::getVar('hashorder'); $orderId = null; if (empty($resourceId)) { $resourceId = null; } if (!empty($hashorder)) { // controllo se ho un ordine $orderId = BFCHelper::decrypt($hashorder); // controllo che l'ordine sia numerico altrimenti non lo considero if (!is_numeric($orderId)) { $orderId = null; } } $return = BFCHelper::setRating($name, $city, $typologyid, $email, $nation, $merchantId, $value1, $value2, $value3, $value4, $value5, $totale, $pregi, $difetti, $userId, $cultureCode, $checkin, $resourceId, $orderId, $label); if ($return < 1) { $return = ""; } echo $return; $app = JFactory::getApplication(); $app->close(); }