Your IP : 216.73.216.219


Current Path : /home/pteabiscqq/www/libraries/quix/app/elements/testimonial/
Upload File :
Current File : /home/pteabiscqq/www/libraries/quix/app/elements/testimonial/view.php

<?php
  // HTML class
  $classes = classNames( "qx-element qx-element-{$type} {$field['class']}",$visibilityClasses, [
    "wow {$field['animation']}" => $field['animation'],
    "qx-hvr-{$field['hover_animation']}" => $field['hover_animation']
  ]);
  // Animation delay
  $animation_delay = '';
  if( $field['animation'] AND array_key_exists('animation_delay', $field) ){
    $animation_delay = 'data-wow-delay="'. $field['animation_delay'] .'s"';
  }
?>

<div id="<?php echo $id; ?>" class="<?php echo $classes; ?>" <?php echo $animation_delay; ?>>
  <div class="qx-media">
    <?php if(!empty($field['image'])) : ?>
      <div class="qx-media-left testi-image">
        <img class="qx-img-responsive <?php echo $field['image_style']?>" src="<?php echo $field['image']?>" alt="<?php echo $field['name']?>">
      </div>
    <?php endif;?>
    <div class="qx-media-body">
      <div class="qx-testimony"><?php echo $field['testimony']?></div>
      <h4 class="title"><?php echo $field['name']?></h4>
      <p class="qx-text-muted designation"><?php echo $field['company']?></p>
    </div>
  </div>
</div>
<!-- qx-element-testimonial -->