File: /home/wwwprimemarka/public_html/wp-content/themes/Zephyr/framework/shortcodes/vc_video.php
<?php defined( 'ABSPATH' ) OR die( 'This script cannot be accessed directly.' );
/**
* Shortcode: us_btn
*
* Dev note: if you want to change some of the default values or acceptable attributes, overload the shortcodes config.
*
* @var $shortcode string Current shortcode name
* @var $shortcode_base string The original called shortcode name (differs if called an alias)
* @var $content string Shortcode's inner content
* @var $atts array Shortcode attributes
*
* @param $atts ['link'] string Video link
* @param $atts ['ratio'] string Ratio: '16x9' / '4x3' / '3x2' / '1x1'
* @param $atts ['max_width'] string Max width in pixels
* @param $atts ['align'] string Video alignment: 'left' / 'center' / 'right'
* @param $atts ['css'] string Extra css
* @param $atts ['el_id'] string element ID
* @param $atts ['el_class'] string Extra class name
*/
$atts = us_shortcode_atts( $atts, 'vc_video' );
$classes = '';
$inner_css = '';
if ( ! empty( $atts['ratio'] ) ) {
$classes .= ' ratio_' . $atts['ratio'];
}
$align_class = '';
if ( $atts['max_width'] != FALSE ) {
$inner_css = ' style="max-width: ' . $atts['max_width'] . 'px"';
$classes .= ' align_' . $atts['align'];
}
if ( ! empty( $atts['css'] ) AND function_exists( 'vc_shortcode_custom_css_class' ) ) {
$classes .= ' ' . vc_shortcode_custom_css_class( $atts['css'] );
}
if ( $atts['el_class'] != '' ) {
$classes .= ' ' . $atts['el_class'];
}
if ( $atts['video_related'] == FALSE ) {
$video_related = '?rel=0';
} else {
$video_related = '';
}
$video_title = '';
$embed_html = '';
foreach ( us_config( 'embeds' ) as $provider => $embed ) {
if ( $embed['type'] != 'video' OR ! preg_match( $embed['regex'], $atts['link'], $matches ) ) {
continue;
}
if ( $atts['video_title'] == FALSE AND $provider == 'youtube' ) {
if ( $atts['video_related'] == FALSE ) {
$video_title = '&';
} else {
$video_title = '?';
}
$video_title .= 'showinfo=0';
} elseif ( $atts['video_title'] == FALSE AND $provider == 'vimeo' ) {
$video_title = '&title=0&byline=0';
}
$video_id = $matches[$embed['match_index']];
$embed_html = str_replace( '<id>', $matches[$embed['match_index']], $embed['html'] );
$embed_html = str_replace( '<related>', $video_related, $embed_html );
$embed_html = str_replace( '<title>', $video_title, $embed_html );
break;
}
if ( empty( $embed_html ) ) {
// Using the default WordPress way
global $wp_embed;
$embed_html = $wp_embed->run_shortcode( '[embed]' . $atts['link'] . '[/embed]' );
}
$el_id_string = '';
if ( $atts['el_id'] != '' ) {
$el_id_string = ' id="' . esc_attr( $atts['el_id'] ) . '"';
}
$output = '<div class="w-video' . $classes . '"' . $inner_css . $el_id_string . '><div class="w-video-h">' . $embed_html . '</div></div>';
echo $output;