/home/arranoyd/stopostoprirodno/wp-content/themes/bridge/vc_templates/qode_circle.php
<?php
$args = array(
"type" => "",
"background_color" => "",
"background_transparency" => "",
"border_color" => "",
"border_width" => "",
"icon" => "",
"size" => "fa-3x",
"icon_color" => "",
"image" => "",
"text_in_circle" => "",
"text_in_circle_tag" => "h3",
"font_size" => "",
"text_in_circle_color" => "",
"text_in_circle_font_weight" => "",
"link" => "",
"link_target" => "_self",
"title" => "",
"title_tag" => "h3",
"title_color" => "",
"text" => "",
"text_color" => ""
);
extract(shortcode_atts($args, $atts));
$headings_array = array('h2', 'h3', 'h4', 'h5', 'h6');
//get correct heading value. If provided heading isn't valid get the default one
$title_tag = (in_array($title_tag, $headings_array)) ? $title_tag : $args['title_tag'];
$text_in_circle_tag = (in_array($text_in_circle_tag, $headings_array)) ? $text_in_circle_tag : $args['text_in_circle_tag'];
$html = '';
$image_src = '';
$image_alt = '';
$circle_style = '';
$border_class = '';
$text_in_circle_style = '';
$icon_style = '';
$title_style = '';
$text_style = '';
if($background_color != "") {
if($background_transparency !="") {
$bg_color = bridge_qode_hex2rgb($background_color);
$circle_style .= "background-color: rgba(". $bg_color[0]."," . $bg_color[1] . "," . $bg_color[2] . "," . $background_transparency . ");";
} else {
$circle_style .= "background-color: ".$background_color.";";
}
}
if($border_color != "") {
$circle_style .= " border-color: ".$border_color.";";
}
if(intval($border_width) > 5) {
$border_class = " big_border";
}
if($border_width != "") {
$circle_style .= "border-width: ".$border_width."px;";
}
if($text_in_circle_color != "") {
$text_in_circle_style .= "color: ".$text_in_circle_color.";";
}
if($text_in_circle_font_weight != '') {
$text_in_circle_style .= 'font-weight: '.$text_in_circle_font_weight.';';
}
if($font_size != "") {
$text_in_circle_style .= " font-size: ".$font_size."px;";
}
if($icon_color != "") {
$icon_style .= "color: ".$icon_color;
}
if($title_color != "") {
$title_style .= "color: ".$title_color;
}
if($text_color != "") {
$text_style .= "color: ".$text_color;
}
$html .= '<li class="q_circle_outer">';
if($link != ""){
$html .= '<a itemprop="url" href="'.$link.'" target="'.$link_target.'">';
}
$html .= '<span class="q_circle_inner'. $border_class .'"><span class="q_circle_inner2" style="'.$circle_style.'">';
if($type == "image_type"){
if (is_numeric($image)) {
$image_src = wp_get_attachment_url($image);
$image_alt = get_post_meta($image, '_wp_attachment_image_alt', true);
}
if($image_src != ""){
$html .= '<img itemprop="image" class="q_image_in_circle" src="'.$image_src.'" alt="'.$image_alt.'" />';
}
} else if ($type == "icon_type"){
$html .= '<i class="fa '.$icon.' '.$size.'" style="'.$icon_style.'"></i>';
} else if ($type == "text_type"){
$html .= '<'.$text_in_circle_tag.' class="q_text_in_circle" style="'.$text_in_circle_style.'">'.$text_in_circle.'</'.$text_in_circle_tag.'>';
}
$html .= '</span></span>';
if($link != ""){
$html .= '</a>';
}
if($title != "" || $text != ""){
$html .= '<div class="q_circle_text_holder">';
if($title != ""){
$html .= '<'.$title_tag.' class="q_circle_title" style="'.$title_style.'">'.$title.'</'.$title_tag.'>';
}
if($text != ""){
$html .= '<p class="q_circle_text" style="'.$text_style.'">'.$text.'</p>';
}
$html .= '</div>';
}
$html .= '</li>';
echo bridge_qode_get_module_part( $html );