Server IP : 192.64.118.117 / Your IP : 18.118.122.239 Web Server : LiteSpeed System : Linux premium56.web-hosting.com 4.18.0-513.24.1.lve.1.el8.x86_64 #1 SMP Thu May 9 15:10:09 UTC 2024 x86_64 User : thecgapy ( 1160) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/thecgapy/www/wp-content/plugins/leads/shared/shortcodes/shortcodes/ |
Upload File : |
<?php /** * Testimonial Shortcode */ /* Shortcode generator config * ----------------------------------------------------- */ $shortcodes_config['testimonial'] = array( 'no_preview' => true, 'options' => array( 'heading' => array( 'name' => __('Heading Text', 'inbound-pro' ), 'desc' => __('Enter the heading text.', 'inbound-pro' ), 'type' => 'text', 'std' => 'Testimonial' ), 'column' => array( 'name' => __('Column', 'inbound-pro' ), 'desc' => __('Select the number of column(s).', 'inbound-pro' ), 'type' => 'select', 'options' => array( '1' => __('1 Column', 'inbound-pro' ), '2' => __('2 Columns', 'inbound-pro' ), '3' => __('3 Columns', 'inbound-pro' ), '4' => __('4 Columns', 'inbound-pro' ), '5' => __('5 Columns', 'inbound-pro' ) ), 'std' => '1' ) ), 'child' => array( 'options' => array( 'author' => array( 'name' => __('Testimony Author', 'leads'), 'desc' => __('Enter the testimony author name.', 'leads'), 'type' => 'text', 'std' => '' ), 'meta' => array( 'name' => __('Testimony Author Meta', 'inbound-pro' ), 'desc' => __('The author job, company or website name.', 'inbound-pro' ), 'type' => 'text', 'std' => '' ), 'content' => array( 'name' => __('Testimony Content', 'leads'), 'desc' => __('Put the content here.', 'leads'), 'type' => 'textarea', 'std' => '' ) ), 'shortcode' => '[testimony author="{{author}}" meta="{{meta}}"]{{content}}[/testimony]', 'clone' => __('Add More Testimony', 'cta' ) ), 'shortcode' => '[testimonial heading="{{heading}}" column="{{column}}"]{{child}}[/testimonial]', 'popup_title' => 'Insert Testimonial Shortcode' ); /* Page builder module config * ----------------------------------------------------- */ $freshbuilder_modules['testimonial'] = array( 'name' => __('Testimonial', 'inbound-pro' ), 'size' => 'one_half', 'options' => array( 'heading' => array( 'name' => __('Heading', 'inbound-pro' ), 'desc' => __('Enter the heading text.', 'inbound-pro' ), 'type' => 'text', 'std' => 'Testimonial', 'class' => '', 'is_content' => 0 ), 'column' => array( 'name' => __('Column', 'inbound-pro' ), 'desc' => __('Select the number of column(s).', 'inbound-pro' ), 'type' => 'select', 'options' => array( '1' => __('1 Column', 'inbound-pro' ), '2' => __('2 Columns', 'inbound-pro' ), '3' => __('3 Columns', 'inbound-pro' ), '4' => __('4 Columns', 'inbound-pro' ), '5' => __('5 Columns', 'inbound-pro' ) ), 'std' => '3', 'class' => '', 'is_content' => 0 ) ), 'child' => array( 'author' => array( 'name' => __('Testimony Author', 'inbound-pro' ), 'desc' => __('Enter the testimony author name.', 'inbound-pro' ), 'type' => 'text', 'std' => '', 'class' => '', 'is_content' => 0 ), 'meta' => array( 'name' => __('Testimony Author Meta', 'inbound-pro' ), 'desc' => __('The author job, company or website name.', 'inbound-pro' ), 'type' => 'text', 'std' => '', 'class' => '', 'is_content' => 0 ), 'content' => array( 'name' => __('Testimony Text', 'inbound-pro' ), 'desc' => __('Put the content here.', 'inbound-pro' ), 'type' => 'textarea', 'std' => '', 'class' => '', 'is_content' => 1 ) ), 'child_code' => 'testimony' ); /* Add shortcode * ----------------------------------------------------- */ add_shortcode('testimonial', 'inbound_shortcode_testimonial'); function inbound_shortcode_testimonial( $atts, $content = null ) { extract(shortcode_atts(array( 'heading' => __('Testimonial', 'inbound-pro' ), 'column' => 1, ), $atts)); $grid = ' grid full'; if ($column == '2') $grid = ' grid one-half'; if ($column == '3') $grid = ' grid one-third'; if ($column == '4') $grid = ' grid one-fourth'; if ($column == '5') $grid = ' grid one-fifth'; $out = ''; $out .= '<div class="testimonial row">'; if ($heading != '') { $out .= '<div class="grid full"><div class="heading"><h3>'.$heading.'</h3><div class="sep"></div></div></div>'; } if (!preg_match_all("/(.?)\[(testimony)\b(.*?)(?:(\/))?\](?:(.+?)\[\/testimony\])?(.?)/s", $content, $matches)) { return do_shortcode($content); } else { for($i = 0; $i < count($matches[0]); $i++) { $matches[3][$i] = shortcode_parse_atts($matches[3][$i]); } for($i = 0; $i < count($matches[0]); $i++) { $out .= '<div class="'.$grid.'">'; $out .= '<div class="fancy-quote">'; $out .= '<div class="quote-text">'; $out .= '<div class="triangle"></div>'; $out .= '<p>'.do_shortcode(trim($matches[5][$i])).'</p>'; $out .= '</div>'; $out .= '<div class="quote-author">'; if( $matches[3][$i]['author'] ) { $out .= '<span class="quote-author-name">'.$matches[3][$i]['author'].'</span>'; } if( $matches[3][$i]['meta'] ){ $out .= ' - <span class="quote-author-meta">'.$matches[3][$i]['meta'].'</span>'; } $out .= '</div>'; $out .= '</div>'; $out .= '</div>'; if( $i == $column - 1 ) { $out .= '<div class="clear"></div>'; } } } $out .= '</div>'; return $out; }