HEX
Server: LiteSpeed
System: Linux premium221.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
User: madepabj (2566)
PHP: 8.3.26
Disabled: NONE
Upload Files
File: //home/madepabj/www/wp-content/themes/rehub-theme/content-egg-templates/Amazon/data_reviews.php
<?php
/*
  Name: Reviews from Amazon (DEPRECATED!!!!)
 */
use ContentEgg\application\helpers\TemplateHelper;
?>

<?php
wp_enqueue_style('eggrehub');
$item = reset($items);
if (!empty($item['extra']['customerReviews'])) {$import_comments = $item['extra']['customerReviews'];}
?>
<?php if (!empty ($import_comments['reviews']) || !empty ($import_comments['HasReviews'])) :?>
    <div class="affrev">
        <?php if ($import_comments['HasReviews'] == 'true'): ?>
            <iframe src='<?php echo esc_url($import_comments['IFrameURL']); ?>' width='100%' height='500'></iframe>    
        <?php elseif (!empty($import_comments['reviews'])): ?>                     
            <?php foreach ($import_comments['reviews'] as $review): ?>
                <div class="helpful-review black">
                    <div class="quote-top"><i class="rhicon rhi-quote-left"></i></div>
                    <div class="quote-bottom"><i class="rhicon rhi-quote-right"></i></div>
                    <div class="text-elips">
                        <em><?php echo esc_html($review['Summary']); ?></em><br />
                        <span class="ce_rating rating_small">
                            <?php echo str_repeat("<span>&#x2605</span>", (int) $review['Rating']); ?><?php echo str_repeat("<span>☆</span>", 5 - (int) $review['Rating']); ?>
                        </span><br />                                    
                        <span><?php echo esc_html($review['Content']); ?></span>
                    </div>
                    <span class="helpful-date"><?php echo date(get_option('date_format'), $review['Date']); ?></span>
                </div>
            <?php endforeach; ?>
            <?php if (!empty($item['extra']['itemLinks'][5])): ?>
                <span class="ce_customer_reviews">
                    <a href="<?php echo esc_url($item['extra']['itemLinks'][5]['URL']);?>" <?php echo ce_printRel();?> target="_blank" > <?php echo esc_attr($item['extra']['itemLinks'][5]['Description']);?></a>
                </span>
            <?php endif; ?>            
        <?php endif; ?>
    </div>
<?php endif ;?>
<div class="clearfix"></div>