HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: /var/www/html/shootinschool/wp-content/themes/shootinschool/vc_templates/stm_block_quote.php
<?php
$atts = vc_map_get_attributes( $this->getShortcode(), $atts );
extract( $atts );

splash_enqueue_modul_scripts_styles('stm_block_quote');

$ico = "icon-icon_testimonials";
if(is_layout("baseball")) $ico = "icon-ico_qoute";
if(!empty($bq_icon)) $ico = $bq_icon;
?>
<div class="stm-block-quote-wrapper <?php echo $blockquote_style; ?>">
	<div class="stm-block-quote-icon">
		<i class="<?php echo esc_html($ico); ?>"></i>
	</div>
	<div class="stm-block-quote">
		<?php echo esc_html($atts['bq_text']); ?>
        <?php if($blockquote_style == 'style_3') {?>
            <div class="author">
                <?php if(!empty($author)) echo esc_html($author);?>
            </div>
        <?php }?>
	</div>
</div>