本文整理汇总了PHP中BFCHelper::setRating方法的典型用法代码示例。如果您正苦于以下问题:PHP BFCHelper::setRating方法的具体用法?PHP BFCHelper::setRating怎么用?PHP BFCHelper::setRating使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BFCHelper
的用法示例。
在下文中一共展示了BFCHelper::setRating方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: merchant_rating_submit
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;
}
示例2: sendRating
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();
}