/home/arranoyd/.trash/otours_b/wp-content/plugins/keydesign-addon/elements/contentbox_elem.php
<?php
if (!class_exists('KD_ELEM_CONTENT_BOX')) {
class KD_ELEM_CONTENT_BOX extends KEYDESIGN_ADDON_CLASS {
function __construct() {
add_action('init', array($this, 'kd_contentbox_init'));
add_shortcode('tek_contentbox', array($this, 'kd_contentbox_shrt'));
}
// Element configuration in admin
function kd_contentbox_init() {
if (function_exists('vc_map')) {
vc_map(array(
"name" => esc_html__("Content box", "keydesign"),
"description" => esc_html__("Content box with icon or custom image.", "keydesign"),
"base" => "tek_contentbox",
"class" => "",
"icon" => plugins_url('assets/element_icons/content-box.png', dirname(__FILE__)),
"category" => esc_html__("KeyDesign Elements", "keydesign"),
"params" => array(
array(
"type" => "textarea",
"class" => "",
"heading" => esc_html__("Box title", "keydesign"),
"param_name" => "cb_title",
"value" => "",
"admin_label" => true,
"description" => esc_html__("Enter a box title text.", "keydesign")
),
array(
"type" => "textfield",
"class" => "",
"heading" => esc_html__("Box subtitle", "keydesign"),
"param_name" => "cb_subtitle",
"value" => "",
"description" => esc_html__("Enter a box subtitle text.", "keydesign")
),
array(
"type" => "textarea",
"class" => "",
"heading" => esc_html__("Box content text", "keydesign"),
"param_name" => "cb_content_text",
"value" => "",
"description" => esc_html__("Enter box content text here.", "keydesign")
),
array(
"type" => "dropdown",
"class" => "",
"heading" => esc_html__("Display icon","keydesign"),
"param_name" => "icon_type",
"value" => array(
"Icon Browser" => "icon_browser",
"Custom Icon" => "custom_icon",
"No icon" => "no_icon",
),
"save_always" => true,
"description" => esc_html__("Select icon source.", "keydesign")
),
array(
"type" => "iconpicker",
"heading" => esc_html__( "Icon", "keydesign" ),
"param_name" => "icon_iconsmind",
"settings" => array(
"type" => "iconsmind",
"iconsPerPage" => 50,
),
"dependency" => array(
"element" => "icon_type",
"value" => "icon_browser",
),
"description" => esc_html__( "Select icon from library.", "keydesign" ),
),
array(
"type" => "colorpicker",
"class" => "",
"heading" => esc_html__("Icon color", "keydesign"),
"param_name" => "icon_color",
"value" => "",
"dependency" => array(
"element" => "icon_type",
"value" => array("icon_browser")
),
"description" => esc_html__("Choose icon color. If none selected, the default theme color will be used.", "keydesign"),
),
array(
"type" => "textfield",
"class" => "",
"heading" => esc_html__("Icon size", "keydesign"),
"param_name" => "icon_size",
"value" => "",
"dependency" => array(
"element" => "icon_type",
"value" => array("icon_browser")
),
"description" => esc_html__("Enter icon size. (eg. 10px, 1em, 1rem)", "keydesign"),
),
array(
"type" => "attach_image",
"class" => "",
"heading" => esc_html__("Upload image icon", "keydesign"),
"param_name" => "icon_img",
"value" => "",
"description" => esc_html__("Upload your own custom image.", "keydesign"),
"dependency" => array(
"element" => "icon_type",
"value" => array("custom_icon"),
),
),
array(
"type" => "dropdown",
"class" => "",
"heading" => esc_html__("Box link type", "keydesign"),
"param_name" => "cb_custom_link",
"value" => array(
esc_html__( 'No link', 'keydesign' ) => '#',
esc_html__( 'Full box link', 'keydesign' ) => 'box-link',
),
"save_always" => true,
"description" => esc_html__("You can add or remove the custom link.", "keydesign"),
),
array(
"type" => "vc_link",
"class" => "",
"heading" => esc_html__("Link settings", "keydesign"),
"param_name" => "cb_box_link",
"value" => "",
"description" => esc_html__("You can add or remove the existing link from here.", "keydesign"),
"dependency" => array(
"element" => "cb_custom_link",
"value" => array( "box-link" ),
),
),
array(
"type" => "dropdown",
"class" => "",
"heading" => esc_html__("CSS Animation", "keydesign"),
"param_name" => "css_animation",
"value" => array(
"No" => "no_animation",
"Fade In" => "kd-animated fadeIn",
"Fade In Down" => "kd-animated fadeInDown",
"Fade In Left" => "kd-animated fadeInLeft",
"Fade In Right" => "kd-animated fadeInRight",
"Fade In Up" => "kd-animated fadeInUp",
"Zoom In" => "kd-animated zoomIn",
),
"description" => esc_html__("Select type of animation for element to be animated when it enters the browsers viewport (Note: works only in modern browsers).", "keydesign"),
),
array(
"type" => "dropdown",
"class" => "",
"heading" => esc_html__("Animation Delay:", "keydesign"),
"param_name" => "elem_animation_delay",
"value" => array(
"0 ms" => "",
"200 ms" => "200",
"400 ms" => "400",
"600 ms" => "600",
"800 ms" => "800",
"1 s" => "1000",
),
"dependency" => array(
"element" => "css_animation",
"value" => array ("kd-animated fadeIn", "kd-animated fadeInDown", "kd-animated fadeInLeft", "kd-animated fadeInRight", "kd-animated fadeInUp", "kd-animated zoomIn"),
),
"description" => esc_html__("Enter animation delay in ms", "keydesign")
),
array(
"type" => "textfield",
"class" => "",
"heading" => esc_html__("Extra class name", "keydesign"),
"param_name" => "cb_extra_class",
"value" => "",
"description" => esc_html__("If you wish to style particular content element differently, then use this field to add a class name and then refer to it in your css file.", "keydesign")
),
)
));
}
}
// Render the element on front-end
public function kd_contentbox_shrt($atts, $content = null)
{
// Declare empty vars
$output = $content_icon = $icon_color_style = $icon_size_style = $cb_img_array = $animation_delay = $icons = $href = $link_target = $link_title = $subtitle_class = '';
extract(shortcode_atts(array(
'icon_type' => '',
'icon_iconsmind' => '',
'icon_color' => '',
'icon_size' => '',
'icon_img' => '',
'cb_title' => '',
'cb_subtitle' => '',
'cb_content_text' => '',
'cb_custom_link' => '',
'cb_box_link' => '',
'cb_button_text' => '',
'css_animation' => '',
'elem_animation_delay' => '',
'cb_extra_class' => '',
), $atts));
if( $icon_type == 'icon_browser' ) {
// Enqueue needed icon font.
// vc_icon_element_fonts_enqueue( $icon_library );
wp_enqueue_style( 'kd_iconsmind' );
}
if (strlen($icon_iconsmind) > 0) {
$icons = $icon_iconsmind;
}
if ($icon_color !== '') {
$icon_color_style = 'color: '.$icon_color.';';
}
if ($icon_size !== '') {
$icon_size_style = 'font-size: '.$icon_size.';';
}
if( $icon_type == 'icon_browser' && !empty($icons) ) {
$content_icon = '<i class="'.$icons .' fa" style="'.$icon_size_style.' '.$icon_color_style.'"></i> ';
}
elseif($icon_type == 'custom_icon' && !empty($icon_img)){
$cb_img_array = wpb_getImageBySize ( $params = array( 'post_id' => NULL, 'attach_id' => $icon_img, 'thumb_size' => 'full', 'class' => "" ) );
$content_icon = '<div class="cb-customimg">'.$cb_img_array['thumbnail'].'</div>';
}
$href = vc_build_link($cb_box_link);
if($href['url'] !== '') {
$link_target = (isset($href['target'])) ? 'target="'.$href['target'].'"' : '';
$link_title = (isset($href['title'])) ? 'title="'.$href['title'].'"' : '';
}
//CSS Animation
if ($css_animation == "no_animation") {
$css_animation = "";
}
// Animation delay
if ($elem_animation_delay) {
$animation_delay = 'data-animation-delay='.$elem_animation_delay;
}
if ($cb_subtitle) {
$subtitle_class = 'with-subtitle';
}
if ($cb_custom_link == "box-link") {
$output .= '<a href="'.$href['url'].'" '.$link_target.' '.$link_title.'>';
}
$output .= '<div class="cb-container '.$css_animation.' '.$cb_extra_class.'" '.$animation_delay.'>';
if ($icon_type != "no_icon") {
$output .= '<div class="cb-img-area">'.$content_icon.'</div>';
}
$output .= '<div class="cb-text-area">
<h4 class="cb-heading '.$subtitle_class.'">'.$cb_title.'</h4>';
if ($cb_subtitle) {
$output .= '<h5 class="cb-subtitle">'.$cb_subtitle.'</h5>';
}
$output .= '<p>'.$cb_content_text.'</p>';
$output .= '</div>';
$output .= '</div>';
if ($cb_custom_link == "box-link") {
$output .= '</a>';
}
return $output;
}
}
}
if (class_exists('KD_ELEM_CONTENT_BOX')) {
$KD_ELEM_CONTENT_BOX = new KD_ELEM_CONTENT_BOX;
}
?>