示例#1
0
$email = $user->email;
$ratingError = 0;
$merchantId = $this->item->MerchantId;
$jdate = new JDate('now');
// 3:20 PM, December 1st, 2012
$endjdate = new JDate('now -1 year');
// 3:20 PM, December 1st, 2012
$listDateArray = array();
while ($jdate > $endjdate) {
    $listDateArray[$jdate->format('Ym01')] = $jdate->toFormat('%B %Y');
    $jdate->modify('-1 month');
}
$selectdate = true;
if (!empty($hashorder)) {
    //	 controllo se ho un ordine
    $orderid = BFCHelper::decrypt($hashorder);
    //	controllo se è un ordine numerico
    if (is_numeric($orderid)) {
        //		controllo se esiste già una recensione per quell'ordine altrimenti no la faccio vedere
        $ratingCount = BFCHelper::getTotalRatingsByOrderId($orderid);
        if ($ratingCount > 0) {
            //ordine con già una recensione
            $ratingError = 2;
            $showForm = false;
        } else {
            $order = BFCHelper::getSingleOrderFromService($orderid);
            //		controllo se esiste l'ordine
            if (isset($order) && ($order->Status === 5 || $order->Status === 20)) {
                $dateCheckin = BFCHelper::parseJsonDate($order->StartDate, 'Y-m-d');
                $dateCheckin = new JDate($dateCheckin);
                $dateCheckout = BFCHelper::parseJsonDate($order->EndDate, 'Y-m-d');
 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();
 }
示例#3
0
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;
}
        ?>
					<?php 
        echo JTEXT::_('COM_BOOKINGFORCONNECTOR_ORDERS_VIEW_STATUS_5');
        ?>
				<?php 
    }
    ?>
				<?php 
    if ($order->Status == 20) {
        ?>
					<?php 
        echo JTEXT::_('COM_BOOKINGFORCONNECTOR_ORDERS_VIEW_STATUS_20');
        ?>
<br />
					<?php 
        $ccDecr1 = BFCHelper::decrypt($order->CCdata);
        $ccDecr = substr($ccDecr1, 0, strrpos($ccDecr1, ">") + 1);
        $cc = new StdClass();
        $cc->Type = BFCHelper::getItem($ccDecr, 'tipo', 'cc');
        $cc->Name = BFCHelper::getItem($ccDecr, 'nome', 'cc');
        $cc->Number = BFCHelper::getItem($ccDecr, 'numero', 'cc');
        $cc->ExpiryMonth = BFCHelper::getItem($ccDecr, 'expmon', 'cc');
        $cc->ExpiryYear = BFCHelper::getItem($ccDecr, 'expyear', 'cc');
        //						$cc = json_decode(substr($ccDecr, 0, strrpos($ccDecr,"}")+1));
        ?>
						<?php 
        echo JTEXT::_('COM_BOOKINGFORCONNECTOR_DEFAULT_FORM_CCSUBTITLE');
        ?>
<br /><br />
						<div class="<?php 
        echo COM_BOOKINGFORCONNECTOR_BOOTSTRAP_ROW;