Sid Gifari File Manager
🏠 Root
/
home2
/
iuywvcmy
/
public_html
/
fani
/
wp-content
/
plugins
/
goodlayers-core
/
framework
/
function
/
Editing: media.php
<?php /* * Goodlayers Media File * --------------------------------------------------------------------- * This file contains media function in the theme * --------------------------------------------------------------------- */ // get icon based on the type specify if( !function_exists('gdlr_core_get_icon_class') ){ function gdlr_core_get_icon_class( $type, $font = 'font-awesome' ){ if( $font == 'font-awesome' ){ switch( $type ){ case 'link': return 'fa fa-link'; break; case 'video': return 'fa fa-film'; break; case 'image': return 'fa fa-search'; break; default: break; } }else if( $font == 'elegant-font' ){ switch( $type ){ case 'link': return 'icon_link_alt'; break; case 'video': return 'icon_film'; break; case 'image': return 'icon_zoom-in_alt'; break; default: break; } } return $type; } // gdlr_core_get_icon_class } // function_exists // get animation option if( !function_exists('gdlr_core_get_animation_option') ){ function gdlr_core_get_animation_option(){ return array( 'none' => esc_html__('None', 'goodlayers-core'), 'fadeIn' => esc_html__('Fade In', 'goodlayers-core'), 'fadeInDown' => esc_html__('Fade In Down', 'goodlayers-core'), 'fadeInUp' => esc_html__('Fade In Up', 'goodlayers-core'), 'fadeInLeft' => esc_html__('Fade In Left', 'goodlayers-core'), 'fadeInRight' => esc_html__('Fade In Right', 'goodlayers-core'), 'bounce' => esc_html__('Bounce', 'goodlayers-core'), 'pulse' => esc_html__('Pulse', 'goodlayers-core'), 'rubberBand' => esc_html__('Rubber Band', 'goodlayers-core'), 'shake' => esc_html__('Shake', 'goodlayers-core'), 'swing' => esc_html__('Swing', 'goodlayers-core'), ); } } if( !function_exists('gdlr_core_get_animation_atts') ){ function gdlr_core_get_animation_atts( $settings ){ $settings = wp_parse_args($settings, array( 'location' => '0.8', 'duration' => '600ms' )); $ret = ''; if( !empty($settings['animation']) && $settings['animation'] != 'none' ){ $ret .= 'data-gdlr-animation="' . esc_attr($settings['animation']) . '" '; $ret .= 'data-gdlr-animation-duration="' . esc_attr($settings['duration']) . '" '; $ret .= 'data-gdlr-animation-offset="' . esc_attr($settings['location']) . '" '; } return $ret; } } // get lightbox attribute if( !function_exists('gdlr_core_get_lightbox_atts') ){ function gdlr_core_get_lightbox_atts( $atts ){ $ret = ''; $lightbox_type = apply_filters('gdlr_core_lightbox_type', 'strip'); if( $lightbox_type == 'lightGallery' ){ $ret .= 'class="gdlr-core-lightgallery gdlr-core-js ' . (empty($atts['class'])? '': $atts['class']) . '" '; $ret .= empty($atts['url'])? '': ' href="' . esc_url($atts['url']) . '"'; $ret .= empty($atts['caption'])? '': ' data-sub-html="' . esc_attr($atts['caption']) . '"'; $ret .= empty($atts['group'])? '': ' data-lightbox-group="' . esc_attr($atts['group']) . '"'; // strip lightbox }else if( $lightbox_type == 'strip' ){ $ret .= ' class="strip ' . (empty($atts['class'])? '': $atts['class']) . '"'; $ret .= empty($atts['url'])? '': ' data-src="' . esc_url($atts['url']) . '"'; $ret .= empty($atts['caption'])? '': ' data-strip-caption="' . esc_attr($atts['caption']) . '"'; $ret .= empty($atts['group'])? '': ' data-strip-group="' . esc_attr($atts['group']) . '"'; $autoplay = apply_filters('gdlr_core_lightbox_video_autoplay', true); $ret .= ' data-strip-options="youtube: {autoplay:' . (empty($autoplay)? '0': '1') . '}"'; // ilightbox }else if( strpos($lightbox_type, 'ilightbox') !== false ){ // change video to embed link if(!empty($atts['type']) && $atts['type'] == 'video'){ $video_url = $atts['url']; if( strpos($video_url, 'youtube') !== false || strpos($video_url, 'youtu.be') !== false ){ if( strpos($video_url, 'youtube') !== false ){ preg_match('#[?&]v=([^&]+)(&.+)?#', $video_url, $id); }else{ preg_match('#youtu.be\/([^?&]+)#', $video_url, $id); } $id[2] = empty($id[2])? '': $id[2]; $youtube_cookies = gdlr_core_youtube_cookies(); $video_url = '//www.youtube' . ($youtube_cookies? '': '-nocookie') . '.com/embed/' . $id[1] . '?wmode=transparent' . $id[2]; // vimeo link }else if( strpos($video_url, 'vimeo') !== false ){ if( strpos($video_url, 'player.vimeo') !== false ){ }else{ preg_match('#https?:\/\/vimeo.com\/(\d+)#', $video_url, $id); $video_url = '//player.vimeo.com/video/' . $id[1] . '?title=0&byline=0&portrait=0'; } } $autoplay = apply_filters('gdlr_core_lightbox_video_autoplay', true); if( !empty($autoplay) ){ $atts['url'] = add_query_arg('autoplay', '1', $video_url); }else{ $atts['url'] = remove_query_arg('autoplay', $video_url); } } $ret .= ' class="gdlr-core-ilightbox gdlr-core-js ' . (empty($atts['class'])? '': $atts['class']) . '"'; $ret .= empty($atts['url'])? '': ' href="' . esc_url($atts['url']) . '"'; $ret .= empty($atts['caption'])? '': ' data-caption="' . esc_attr($atts['caption']) . '"'; $ret .= empty($atts['group'])? '': ' data-ilightbox-group="' . esc_attr($atts['group']) . '"'; if( !empty($atts['type']) && $atts['type'] == 'video' ){ $ret .= ' data-type="iframe" data-options="width: 1280, height: 720" '; }else{ $ret .= ' data-type="image" '; } } return $ret; } } // get image from image id/url if( !function_exists('gdlr_core_get_image_url') ){ function gdlr_core_get_image_url( $image, $size = 'gdlr-core-full', $placeholder = true){ if( is_numeric($image) ){ $image_src = wp_get_attachment_image_src($image, $size); if( !empty($image_src) ) return $image_src[0]; }else if( !empty($image) ){ return $image; } if( is_admin() && $placeholder ){ return GDLR_CORE_URL . '/include/images/goodlayers.png'; } } } if( !function_exists('gdlr_core_get_image') ){ function gdlr_core_get_image( $image, $size = 'full', $settings = array() ){ $ret = ''; $full_image_url = ''; $placeholder = isset($settings['placeholder'])? $settings['placeholder']: true; // get_image section if( is_numeric($image) ){ $alt_text = get_post_meta($image , '_wp_attachment_image_alt', true); $image_src = wp_get_attachment_image_src($image, $size); $full_image_url = gdlr_core_get_image_url($image, NULL, $placeholder); if( !empty($image_src) ){ if( empty($settings['srcset']) ){ $img_srcset = gdlr_core_get_image_srcset($image, $image_src); } if( empty($img_srcset) ){ $img_title = get_the_title($image); $ret .= '<img src="' . esc_url($image_src[0]) . '" alt="' . esc_attr($alt_text) . '" '; $ret .= empty($image_src[1])? '': 'width="' . esc_attr($image_src[1]) .'" '; $ret .= empty($image_src[2])? '': 'height="' . esc_attr($image_src[2]) . '" '; $ret .= empty($img_title)? '': 'title="' . esc_attr($img_title) . '" '; $ret .= empty($settings['img-style'])? '': $settings['img-style']. ' '; $ret .= empty($settings['srcset'])? '': $settings['srcset'] . ' '; $ret .= empty($settings['image-class'])? '': 'class="'. $settings['image-class'] . '" '; $ret .= '/>'; }else{ $ret .= '<img ' . $img_srcset . ' alt="' . esc_attr($alt_text) . '" '; $ret .= empty($settings['img-style'])? '': $settings['img-style']. ' '; $ret .= empty($settings['image-class'])? '': 'class="'. $settings['image-class'] . '" '; $ret .= '/>'; } }else if( is_admin() ){ return '<img src="' . esc_url($full_image_url) . '" alt="" ' . (empty($settings['img-style'])? '': $settings['img-style']) . ' />'; }else{ return; } }else if( !empty($image) ){ $full_image_url = $image; $ret .= '<img src="' . esc_url($image) . '" alt="" '; $ret .= empty($settings['srcset'])? '': $settings['srcset'] . ' '; $ret .= (empty($settings['img-style'])? '': $settings['img-style']) . ' />'; }else{ if( is_admin() ){ return '<img src="' . esc_url(gdlr_core_get_image_url('', NULL, $placeholder)) . '" alt="" ' . (empty($settings['img-style'])? '': $settings['img-style']) . ' />'; }else{ return; } } $image_overlay_atts = array( 'background'=>empty($settings['image-overlay-background'])? '': $settings['image-overlay-background'], 'border-radius'=>empty($settings['image-overlay-radius'])? '': $settings['image-overlay-radius'], 'content'=>empty($settings['image-overlay-content'])? '': $settings['image-overlay-content'], 'content-outer'=>empty($settings['image-overlay-content-outer'])? '': $settings['image-overlay-content-outer'], 'overlay-class'=>empty($settings['image-overlay-class'])? '': $settings['image-overlay-class'], 'icon'=>empty($settings['image-overlay-icon'])? '': $settings['image-overlay-icon'], 'icon-type'=>empty($settings['image-overlay-icon-type'])? '': $settings['image-overlay-icon-type'], 'icon-size'=>empty($settings['image-overlay-icon-size'])? '': $settings['image-overlay-icon-size'], 'icon-color'=>empty($settings['image-overlay-icon-color'])? '': $settings['image-overlay-icon-color'], 'icon-background'=>empty($settings['image-overlay-icon-background'])? '': $settings['image-overlay-icon-background'], 'icon-radius'=>empty($settings['image-overlay-icon-radius'])? '': $settings['image-overlay-icon-radius'], 'icon-padding'=>empty($settings['image-overlay-icon-padding'])? '': $settings['image-overlay-icon-padding'], ); // apply link if( !empty($settings['link']) || !empty($settings['link-tag']) ){ $image_overlay = ''; if( !empty($settings['image-overlay']) || !empty($image_overlay_atts['content']) ){ if( empty($image_overlay_atts['icon']) ){ $image_overlay_atts['icon'] = 'link'; } $image_overlay = gdlr_core_get_image_overlay($image_overlay_atts); } if( !empty($settings['link-tag']) ){ $ret = $settings['link-tag'] . $ret . $image_overlay . '</a>'; }else{ $ret = '<a href="' . esc_url($settings['link']) . '" ' . (empty($settings['link-target'])? '': 'target="' . esc_attr($settings['link-target']) . '"') . ' >' . $ret . $image_overlay . '</a>'; } // apply lightbox }else if( !empty($settings['lightbox']) ){ $lightbox_atts = array( 'group' => empty($settings['lightbox-group'])? '': $settings['lightbox-group'], ); if( $settings['lightbox'] === true ){ $lightbox_atts['url'] = $full_image_url; $lightbox_atts['caption'] = gdlr_core_get_image_info($image, 'caption'); }else if( $settings['lightbox'] == 'video' ){ $lightbox_atts['url'] = empty($settings['lightbox-video'])? '': $settings['lightbox-video']; $lightbox_atts['type'] = 'video'; }else if( $settings['lightbox'] == 'image' ){ if( is_numeric($settings['lightbox-image']) ){ $lb_image_url = gdlr_core_get_image_url($settings['lightbox-image']); $lb_image_caption = gdlr_core_get_image_info($settings['lightbox-image'], 'caption'); }else{ $lb_image_url = $settings['lightbox-image']; $lb_image_caption = ''; } $lightbox_atts['url'] = $lb_image_url; $lightbox_atts['caption'] = $lb_image_caption; } $image_overlay = ''; if( !empty($settings['image-overlay']) || !empty($image_overlay_atts['content']) ){ if( empty($image_overlay_atts['icon']) ){ $image_icon = ($settings['lightbox'] === true)? 'image': $settings['lightbox']; $image_overlay_atts['icon'] = $image_icon; } $image_overlay = gdlr_core_get_image_overlay($image_overlay_atts); } $ret = '<a ' . gdlr_core_get_lightbox_atts($lightbox_atts) . '>' . $ret . $image_overlay . '</a>'; }else{ if( !empty($settings['image-overlay']) || !empty($image_overlay_atts['content']) ){ $ret .= gdlr_core_get_image_overlay($image_overlay_atts); } } return $ret; } } if( !function_exists('gdlr_core_image_group_id') ){ function gdlr_core_image_group_id(){ global $gdlr_core_image_group; $gdlr_core_image_group = empty($gdlr_core_image_group)? 1: $gdlr_core_image_group + 1; return 'gdlr-core-img-group-' . $gdlr_core_image_group; } } if( !function_exists('gdlr_core_get_image_info') ){ function gdlr_core_get_image_info($image_id, $type = '') { if( !is_numeric($image_id) ) return ''; $ret = ''; $image = get_post($image_id); if( !empty($image) ){ $ret = array( 'caption' => $image->post_excerpt, 'description' => $image->post_content, 'title' => $image->post_title ); if( !empty($type) ) return $ret[$type]; } return $ret; } } if( !function_exists('gdlr_core_get_image_overlay') ){ function gdlr_core_get_image_overlay( $settings = array() ){ $extra_class = empty($settings['overlay-class'])? '': $settings['overlay-class']; $ret = '<span class="gdlr-core-image-overlay ' . esc_attr($extra_class) . '" ' . gdlr_core_esc_style(array( 'background' => empty($settings['background'])? '': $settings['background'], 'border-radius' => empty($settings['border-radius'])? '': $settings['border-radius'] )) . ' >'; if( !empty($settings['content']) ){ $ret .= '<span class="gdlr-core-image-overlay-content" >' . $settings['content'] . '</span>'; }else if( !empty($settings['icon']) ){ $icon_atts = array(); $icon_class = ''; $icon_size_type = 'class'; if( empty($settings['icon-size']) ){ $icon_class .= ' gdlr-core-size-22'; }else if( strpos($settings['icon-size'], 'px') !== false ){ $icon_size_type = 'pixel'; $icon_atts['width'] = $settings['icon-size']; $half_margin = (intval(str_replace('px', '', $settings['icon-size'])) / 2); }else{ $icon_class .= ' ' . $settings['icon-size']; } if( !empty($settings['icon-type']) && $settings['icon-type'] == 'custom-image' ){ $ret .= '<span class="gdlr-core-image-overlay-icon ' . esc_attr($icon_class) . '" ' . gdlr_core_esc_style($icon_atts) . ' >' . gdlr_core_get_image($settings['icon']) . '</span>'; }else if( empty($settings['icon-type']) || $settings['icon-type'] != 'none' ){ $icon_atts['color'] = empty($settings['icon-color'])? '': $settings['icon-color']; $icon_atts['background-color'] = empty($settings['icon-background'])? '': $settings['icon-background']; if( $icon_size_type == 'pixel' ){ $icon_atts['font-size'] = $settings['icon-size']; $icon_atts['line-height'] = $settings['icon-size']; if( strpos($extra_class, 'gdlr-core-round-icon') !== false ){ $icon_atts['padding'] = $half_margin . 'px 0px'; $icon_atts['width'] = (4 * $half_margin) . 'px'; } } if( !empty($settings['icon-radius']) ){ $icon_atts['border-radius'] = $settings['icon-radius']; } if( !empty($settings['icon-padding']) ){ $icon_atts['padding'] = $settings['icon-padding']; $icon_atts['width'] = ''; } $settings['icon-type'] = empty($settings['icon-type'])? 'font-awesome': $settings['icon-type']; $icon_class .= ' ' . gdlr_core_get_icon_class($settings['icon'], $settings['icon-type']); $ret .= '<i class="gdlr-core-image-overlay-icon ' . esc_attr($icon_class) . '" ' . gdlr_core_esc_style($icon_atts) . ' ></i>'; } } if( !empty($settings['content-outer']) ){ $ret .= $settings['content-outer']; } $ret .= '</span>'; return $ret; } } // get lb gallery slides if( !function_exists('gdlr_core_lb_gallery') ){ function gdlr_core_lb_gallery( $slides = array() ){ $lightbox_type = apply_filters('gdlr_core_lightbox_type', 'strip'); $lb_gallery = array(); if( !empty($slides) ){ foreach( $slides as $slide ){ $tmp_image = array(); if( $lightbox_type == 'lightGallery' ){ $tmp_image['src'] = gdlr_core_get_image_url($slide['id']); $tmp_image['subHtml'] = gdlr_core_get_image_info($slide['id'], 'caption'); }else{ $tmp_image['url'] = gdlr_core_get_image_url($slide['id']); $tmp_image['caption'] = gdlr_core_get_image_info($slide['id'], 'caption'); } $lb_gallery[] = $tmp_image; } } return $lb_gallery; } } // get flexslider slides if( !function_exists('gdlr_core_get_flexslider_navigation_types') ){ function gdlr_core_get_flexslider_navigation_types( $extra = array() ){ return $extra + array( 'none' => esc_html__('None', 'goodlayers-core'), 'navigation' => esc_html__('Only Navigation', 'goodlayers-core'), 'touch-navigation' => esc_html__('Touch Navigation', 'goodlayers-core'), 'touch-navigation-bullet' => esc_html__('Touch Navigation & Bullet', 'goodlayers-core'), 'bullet' => esc_html__('Only Bullet', 'goodlayers-core'), 'both' => esc_html__('Both Navigation and Bullet', 'goodlayers-core'), 'navigation-top' => esc_html__('Navigation Top (Custom)', 'goodlayers-core'), 'navigation-bottom' => esc_html__('Navigation Bottom (Custom)', 'goodlayers-core'), 'navigation-outer' => esc_html__('Navigation Outer (Custom)', 'goodlayers-core'), 'navigation-inner' => esc_html__('Navigation Inner (Custom)', 'goodlayers-core'), ); } } if( !function_exists('gdlr_core_get_flexslider_navigation_align') ){ function gdlr_core_get_flexslider_navigation_align( $conditions = array() ){ return array( 'title' => esc_html__('Carousel Navigation Position', 'goodlayers-core'), 'type' => 'radioimage', 'options' => 'text-align', 'default' => 'center', 'condition' => $conditions + array('carousel-navigation' => array('navigation-top', 'navigation-bottom')) ); } } if( !function_exists('gdlr_core_get_flexslider_navigation_left_icon') ){ function gdlr_core_get_flexslider_navigation_left_icon( $conditions = array() ){ return array( 'title' => esc_html__('Carousel Navigation Left Icon', 'goodlayers-core'), 'type' => 'text', 'condition' => $conditions + array('carousel-navigation' => array('navigation-top', 'navigation-bottom', 'navigation-outer', 'navigation-inner')) ); } } if( !function_exists('gdlr_core_get_flexslider_navigation_right_icon') ){ function gdlr_core_get_flexslider_navigation_right_icon( $conditions = array() ){ return array( 'title' => esc_html__('Carousel Navigation Right Icon', 'goodlayers-core'), 'type' => 'text', 'condition' => $conditions + array('carousel-navigation' => array('navigation-top', 'navigation-bottom', 'navigation-outer', 'navigation-inner')) ); } } if( !function_exists('gdlr_core_get_flexslider_navigation_icon_size') ){ function gdlr_core_get_flexslider_navigation_icon_size( $conditions = array() ){ return array( 'title' => esc_html__('Carousel Navigation Icon Size', 'goodlayers-core'), 'type' => 'text', 'data-input-type' => 'pixel', 'condition' => $conditions + array('carousel-navigation' => array('navigation-top', 'navigation-bottom', 'navigation-outer', 'navigation-inner')) ); } } if( !function_exists('gdlr_core_get_flexslider_navigation_icon_color') ){ function gdlr_core_get_flexslider_navigation_icon_color( $conditions = array() ){ return array( 'title' => esc_html__('Carousel Navigation Icon Color', 'goodlayers-core'), 'type' => 'colorpicker', 'condition' => $conditions + array('carousel-navigation' => array('navigation-top', 'navigation-bottom', 'navigation-outer', 'navigation-inner')) ); } } if( !function_exists('gdlr_core_get_flexslider_navigation_icon_hover_color') ){ function gdlr_core_get_flexslider_navigation_icon_hover_color( $conditions = array() ){ return array( 'title' => esc_html__('Carousel Navigation Icon Hover Color', 'goodlayers-core'), 'type' => 'colorpicker', 'condition' => $conditions + array('carousel-navigation' => array('navigation-top', 'navigation-bottom', 'navigation-outer', 'navigation-inner')) ); } } if( !function_exists('gdlr_core_get_flexslider_navigation_icon_background') ){ function gdlr_core_get_flexslider_navigation_icon_background( $conditions = array() ){ return array( 'title' => esc_html__('Carousel Navigation Icon Background', 'goodlayers-core'), 'type' => 'colorpicker', 'condition' => $conditions + array('carousel-navigation' => array('navigation-top', 'navigation-bottom', 'navigation-outer', 'navigation-inner')) ); } } if( !function_exists('gdlr_core_get_flexslider_navigation_icon_padding') ){ function gdlr_core_get_flexslider_navigation_icon_padding( $conditions = array() ){ return array( 'title' => esc_html__('Carousel Navigation Icon Padding', 'goodlayers-core'), 'type' => 'custom', 'item-type' => 'padding', 'data-input-type' => 'pixel', 'default' => array( 'top'=>'', 'right'=>'', 'bottom'=>'', 'left'=>'', 'settings'=>'link' ), 'condition' => $conditions + array('carousel-navigation' => array('navigation-top', 'navigation-bottom', 'navigation-outer', 'navigation-inner')) ); } } if( !function_exists('gdlr_core_get_flexslider_navigation_icon_radius') ){ function gdlr_core_get_flexslider_navigation_icon_radius( $conditions = array() ){ return array( 'title' => esc_html__('Carousel Navigation Icon Border Radius', 'goodlayers-core'), 'type' => 'text', 'data-input-type' => 'pixel', 'condition' => $conditions + array('carousel-navigation' => array('navigation-top', 'navigation-bottom', 'navigation-outer', 'navigation-inner')) ); } } if( !function_exists('gdlr_core_get_flexslider_navigation_margin') ){ function gdlr_core_get_flexslider_navigation_margin( $conditions = array() ){ return array( 'title' => esc_html__('Carousel Vertical Position Offset', 'goodlayers-core'), 'type' => 'text', 'data-input-type' => 'pixel', 'description' => esc_html__('Top margin for navigation bottom/outer navigation/inner navigation & bottom margin for navigation top style.', 'goodlayers-core'), 'condition' => $conditions + array('carousel-navigation' => array('navigation-top', 'navigation-bottom', 'navigation-outer', 'navigation-inner')) ); } } if( !function_exists('gdlr_core_get_flexslider_navigation_side_margin') ){ function gdlr_core_get_flexslider_navigation_side_margin( $conditions = array() ){ return array( 'title' => esc_html__('Carousel Navigation Side Margin', 'goodlayers-core'), 'type' => 'text', 'data-input-type' => 'pixel', 'description' => esc_html__('Left / Right Margin for navigation top & bottom', 'goodlayers-core'), 'condition' => $conditions + array('carousel-navigation' => array('navigation-top', 'navigation-bottom')) ); } } if( !function_exists('gdlr_core_get_flexslider_navigation_icon_margin') ){ function gdlr_core_get_flexslider_navigation_icon_margin( $conditions = array() ){ return array( 'title' => esc_html__('Carousel Navigation Icon Margin', 'goodlayers-core'), 'type' => 'text', 'data-input-type' => 'pixel', 'description' => esc_html__('Space between icon for navigation top and navigation bottom style. Left & Right space for navigation outer and navigation inner style.', 'goodlayeres-core'), 'condition' => $conditions + array('carousel-navigation' => array('navigation-top', 'navigation-bottom', 'navigation-outer', 'navigation-inner')) ); } } if( !function_exists('gdlr_core_get_flexslider_bullet_types') ){ function gdlr_core_get_flexslider_bullet_types(){ return array( 'default' => esc_html__('Default', 'goodlayers-core'), 'round gdlr-core-color-bullet' => esc_html__('Round (Background)', 'goodlayers-core'), 'round3 gdlr-core-color-bullet' => esc_html__('Round (Background) 2', 'goodlayers-core'), 'round2 gdlr-core-border-color-bullet' => esc_html__('Round (Border)', 'goodlayers-core'), 'cylinder' => esc_html__('Cylinder', 'goodlayers-core'), 'cylinder-left' => esc_html__('Cylinder Left', 'goodlayers-core'), 'cylinder gdlr-core-style-2' => esc_html__('Cylinder 2', 'goodlayers-core'), 'cylinder gdlr-core-style-3' => esc_html__('Cylinder 3', 'goodlayers-core'), ); } } if( !function_exists('gdlr_core_get_flexslider_bullet_itypes') ){ function gdlr_core_get_flexslider_bullet_itypes(){ return array( 'default' => GDLR_CORE_URL . '/include/images/slider/bullet/default.jpg', 'round gdlr-core-color-bullet' => GDLR_CORE_URL . '/include/images/slider/bullet/round.jpg', 'round3 gdlr-core-color-bullet' => GDLR_CORE_URL . '/include/images/slider/bullet/round-2.jpg', 'round2 gdlr-core-border-color-bullet' => GDLR_CORE_URL . '/include/images/slider/bullet/round-border.jpg', 'round4 gdlr-core-border-color-bullet' => GDLR_CORE_URL . '/include/images/slider/bullet/round-4.jpg', 'round5 gdlr-core-border-color-bullet' => GDLR_CORE_URL . '/include/images/slider/bullet/round-5.png', 'cylinder' => GDLR_CORE_URL . '/include/images/slider/bullet/cylinder.jpg', 'cylinder-left' => GDLR_CORE_URL . '/include/images/slider/bullet/cylinder-left.jpg', 'cylinder gdlr-core-style-2' => GDLR_CORE_URL . '/include/images/slider/bullet/cylinder-2.jpg', 'cylinder gdlr-core-style-3' => GDLR_CORE_URL . '/include/images/slider/bullet/cylinder-3.jpg', ); } } if( !function_exists('gdlr_core_get_flexslider') ){ function gdlr_core_get_flexslider( $slides = array(), $atts = array() ){ $extra_class = empty($atts['additional-class'])? '': $atts['additional-class']; $extra_class .= empty($atts['overflow'])? '': ' gdlr-core-overflow-' . $atts['overflow']; if( !empty($atts['navigation']) && in_array($atts['navigation'], array('bullet', 'both', 'touch-navigation-bullet')) && !empty($atts['bullet-style']) && $atts['bullet-style'] != 'default' ){ $extra_class .= ' gdlr-core-bullet-style-' . $atts['bullet-style']; } $custom_nav = ''; if( !empty($atts['navigation']) && in_array($atts['navigation'], array('navigation-top', 'navigation-bottom', 'navigation-outer', 'navigation-inner')) ){ if( $atts['navigation'] == 'navigation-bottom' && empty($atts['navigation-size']) && empty($atts['navigation-left-icon']) && empty($atts['navigation-right-icon']) && (empty($atts['navigation-align']) || $atts['navigation-align'] == 'center' ) ){ $extra_class .= ' gdlr-core-bottom-nav-1'; }else if( !empty($atts['navigation-old']) ){ $extra_class .= ' gdlr-core-v1'; }else{ $custom_nav_class = ' gdlr-core-style-' . $atts['navigation']; $custom_nav_class .= empty($atts['navigation-align'])? '': ' gdlr-core-' . esc_attr($atts['navigation-align']) . '-align'; $custom_nav_atts = array(); $custom_nav_icon_atts = array( 'color' => empty($atts['navigation-icon-color'])? '': $atts['navigation-icon-color'], 'background-color' => empty($atts['navigation-icon-background'])? '': $atts['navigation-icon-background'], 'padding' => empty($atts['navigation-icon-padding'])? '': $atts['navigation-icon-padding'], 'border-radius' => empty($atts['navigation-icon-radius'])? '': $atts['navigation-icon-radius'], ); if( in_array($atts['navigation'], array('navigation-inner', 'navigation-outer')) && (!empty($atts['navigation-on-hover']) && $atts['navigation-on-hover'] == 'enable') ){ $custom_nav_class .= ' gdlr-core-show-on-hover'; }else if( $atts['navigation'] == 'navigation-top' ){ $custom_nav_atts['margin-bottom'] = empty($atts['navigation-margin'])? '': $atts['navigation-margin']; $custom_nav_atts['margin-left'] = empty($atts['navigation-side-margin'])? '': $atts['navigation-side-margin']; $custom_nav_atts['margin-right'] = empty($atts['navigation-side-margin'])? '': $atts['navigation-side-margin']; $custom_nav_icon_atts['margin-right'] = empty($atts['navigation-icon-margin'])? '': $atts['navigation-icon-margin']; }else if( $atts['navigation'] == 'navigation-bottom' ){ $custom_nav_atts['margin-top'] = empty($atts['navigation-margin'])? '': $atts['navigation-margin']; $custom_nav_atts['margin-left'] = empty($atts['navigation-side-margin'])? '': $atts['navigation-side-margin']; $custom_nav_atts['margin-right'] = empty($atts['navigation-side-margin'])? '': $atts['navigation-side-margin']; $custom_nav_icon_atts['margin-right'] = empty($atts['navigation-icon-margin'])? '': $atts['navigation-icon-margin']; } if( !empty($atts['navigation-size']) ){ $custom_nav_icon_atts['font-size'] = empty($atts['navigation-size'])? '': $atts['navigation-size']; if( $atts['navigation'] == 'navigation-inner' ){ $half_size = intval(str_replace('px', '', $custom_nav_icon_atts['font-size'])) / 2; $custom_nav_icon_atts['margin-top'] = "-{$half_size}px"; $custom_nav_icon_atts['left'] = empty($atts['navigation-icon-margin'])? '': $atts['navigation-icon-margin']; }else if( $atts['navigation'] == 'navigation-outer' ){ $atts['vcenter-nav'] = 1; $custom_nav_icon_atts['left'] = empty($atts['navigation-icon-margin'])? '': $atts['navigation-icon-margin']; } } if( $atts['navigation'] == 'navigation-inner' ){ if( !empty($atts['navigation-margin']) ){ $custom_nav_icon_atts['margin-top'] = $atts['navigation-margin']; } }else if( $atts['navigation'] == 'navigation-outer' ){ if( !empty($atts['navigation-margin']) ){ $custom_nav_atts['margin-top'] = $atts['navigation-margin']; } } $atts['nav-parent'] = 'self'; $custom_nav = '<div class="gdlr-core-flexslider-custom-nav ' . esc_attr($custom_nav_class) . '" ' . gdlr_core_esc_style($custom_nav_atts) . '>'; $custom_nav .= '<i class="' . (empty($atts['navigation-left-icon'])? 'arrow_carrot-left gdlr-core-default': $atts['navigation-left-icon']) . ' flex-prev" ' . gdlr_core_esc_style($custom_nav_icon_atts) . ' ></i>'; unset($custom_nav_icon_atts['margin-right']); if( !empty($custom_nav_icon_atts['left']) ){ $custom_nav_icon_atts['right'] = $custom_nav_icon_atts['left']; unset($custom_nav_icon_atts['left']); } $custom_nav .= '<i class="' . (empty($atts['navigation-right-icon'])? 'arrow_carrot-right gdlr-core-default': $atts['navigation-right-icon']) . ' flex-next" ' . gdlr_core_esc_style($custom_nav_icon_atts) . ' ></i>'; $custom_nav .= '</div>'; } } $ret = ''; if( !empty($atts['left-content']) || !empty($atts['left-title']) ){ $ret .= '<div class="gdlr-core-flexslider-outer gdlr-core-item-rvpdlr clearfix" >'; $ret .= '<div class="gdlr-core-column-24 gdlr-core-left-align gdlr-core-item-pdlr gdlr-core-item-mgb" >'; if( !empty($atts['left-title']) ){ $ret .= '<h3 class="gdlr-core-flex-slider-left-title" ' . gdlr_core_esc_style(array( 'font-size' => empty($atts['left-title-font-size'])? '': $atts['left-title-font-size'] )) . ' >' . $atts['left-title'] . '</h3>'; } if( !empty($atts['left-content']) ){ $ret .= '<div class="gdlr-core-flex-slider-left-content" >' . $atts['left-content'] . '</div>'; } $ret .= '<div class="gdlr-core-flexslider-left-content-nav" >'; $ret .= '<i class="gdlr-custom-flex-prev fa fa-angle-left" ></i>'; $ret .= '<i class="gdlr-custom-flex-next fa fa-angle-right" ></i>'; $ret .= '</div>'; // gdlr-core-flexslider-left-content-nav $ret .= '</div>'; // gdlr-core-column-24 $ret .= '<div class="gdlr-core-column-36 gdlr-core-item-pdlr" >'; } $ret .= '<div class="gdlr-core-flexslider flexslider gdlr-core-js-2 ' . esc_attr($extra_class) . '" '; $ret .= empty($atts['carousel'])? 'data-type="slider" ': 'data-type="carousel" '; $ret .= empty($atts['column'])? '': 'data-column="' . esc_attr($atts['column']) . '" '; $ret .= empty($atts['move'])? '': 'data-move="' . esc_attr($atts['move']) . '" '; $ret .= empty($atts['pausetime'])? '': 'data-pausetime="' . esc_attr($atts['pausetime']) . '" '; $ret .= empty($atts['slidespeed'])? '': 'data-slidespeed="' . esc_attr($atts['slidespeed']) . '" '; $ret .= empty($atts['effect'])? '': 'data-effect="' . esc_attr($atts['effect']) . '" '; $ret .= empty($atts['navigation'])? '': 'data-nav="' . esc_attr($atts['navigation']) . '" '; $ret .= empty($atts['nav-parent'])? '': 'data-nav-parent="' . esc_attr($atts['nav-parent']) . '" '; $ret .= empty($atts['nav-type'])? '': 'data-nav-type="' . esc_attr($atts['nav-type']) . '" '; $ret .= empty($atts['vcenter-nav'])? '': 'data-vcenter-nav="1" '; $ret .= empty($atts['with-thumbnail'])? '': 'data-thumbnail="1" '; $ret .= empty($atts['disable-autoslide'])? '': 'data-disable-autoslide="1" '; $ret .= empty($atts['start-at'])? '': 'data-start-at="' . esc_attr($atts['start-at']) . '" '; $ret .= empty($atts['controls-top-margin'])? '': 'data-controls-top-margin="' . esc_attr($atts['controls-top-margin']) . '" '; $ret .= empty($atts['margin'])? '': ' data-margin="' . esc_attr($atts['margin']) . '" '; $ret .= ' >' . $custom_nav; $ret .= empty($atts['pre-content'])? '': $atts['pre-content']; $ret .= '<ul class="slides" >'; foreach( $slides as $slide ){ $ret .= '<li '; $ret .= (!empty($atts['carousel']) && (!isset($atts['mglr']) || $atts['mglr'] === true))? ' class="gdlr-core-item-mglr" ': ''; $ret .= ' >'; $ret .= $slide; $ret .= '</li>'; } $ret .= '</ul>'; $ret .= '</div>'; // flexslider if( !empty($atts['left-content']) || !empty($atts['left-title']) ){ $ret .= '</div>'; // gdlr-core-column-36 $ret .= '</div>'; // gdlr-core-flexslider-outer } return $ret; } } // get audio from url if( !function_exists('gdlr_core_get_audio') ){ function gdlr_core_get_audio( $audio ){ if( empty($audio) ) return ''; $ret = '<div class="gdlr-core-audio">'; if( preg_match('#^\[audio\s.+\[/audio\]#', $audio, $match) ){ $ret .= do_shortcode($audio); }else{ $ret .= wp_audio_shortcode(array('src'=>$audio)); } $ret .= '</div>'; return $ret; } } // get video from url if( !function_exists('gdlr_core_get_video') ){ function gdlr_core_get_video( $video, $size = 'full', $atts = array() ){ $size = gdlr_core_get_video_size($size); // video shortcode if( preg_match('#^\[video\s.+\[/video\]#', $video, $match) ){ return do_shortcode($match[0]); // embed shortcode }else if( preg_match('#^\[embed.+\[/embed\]#', $video, $match) ){ global $wp_embed; return $wp_embed->run_shortcode($match[0]); // youtube link }else if( strpos($video, 'youtube') !== false || strpos($video, 'youtu.be') !== false ){ if( strpos($video, 'youtube') !== false ){ preg_match('#[?&]v=([^&]+)(&.+)?#', $video, $id); }else{ preg_match('#youtu.be\/([^?&]+)#', $video, $id); } $id[2] = empty($id[2])? '': $id[2]; $youtube_cookies = gdlr_core_youtube_cookies(); $url = '//www.youtube' . ($youtube_cookies? '': '-nocookie') . '.com/embed/' . $id[1] . '?wmode=transparent' . $id[2]; if( !empty($atts['background']) ){ $url = add_query_arg(array( 'autoplay' => 1, 'controls' => 0, 'showinfo' => 0, 'rel' => 0, 'enablejsapi' => 1, 'loop' => 1, 'playlist' => $id[1] ), $url); }else{ if( !empty($atts['autoplay']) ){ $url = add_query_arg(array( 'autoplay' => 1, 'mute' => 1 ), $url); } if( !empty($atts['loop']) ){ $url = add_query_arg(array( 'loop' => 1, 'playlist' => $id[1] ), $url); } if( !empty($atts['api']) ){ $url = add_query_arg(array( 'enablejsapi' => 1 ), $url); } } return '<iframe src="' . esc_url($url) . '" width="' . esc_attr($size['width']) . '" height="' . esc_attr($size['height']) . '" data-player-type="youtube" allowfullscreen ></iframe>'; // vimeo link }else if( strpos($video, 'vimeo') !== false ){ if( strpos($video, 'player.vimeo') !== false ){ $url = $video; }else{ preg_match('#https?:\/\/vimeo.com\/(\d+)#', $video, $id); $url = '//player.vimeo.com/video/' . $id[1] . '?title=0&byline=0&portrait=0'; } if( !empty($atts['background']) ){ $url = add_query_arg(array( 'autopause' => 0, 'autoplay' => 1, 'loop' => 1, 'api' => 1, 'background' => 1, 'muted' => 1 ), $url); }else{ if( !empty($atts['autoplay']) ){ $url = add_query_arg(array( 'autoplay' => 1, 'muted' => 1 ), $url); } if( !empty($atts['loop']) ){ $url = add_query_arg(array( 'loop' => 1 ), $url); } if( !empty($atts['api']) ){ $url = add_query_arg(array( 'api' => 1 ), $url); } } return '<iframe src="' . esc_url($url) . '" width="' . esc_attr($size['width']) . '" height="' . esc_attr($size['height']) . '" data-player-type="vimeo" allowfullscreen ></iframe>'; // another link }else if(preg_match('#^https?://\S+#', $video, $match)){ $path_parts = pathinfo($match[0]); if( !empty($path_parts['extension']) ){ return wp_video_shortcode( array( 'width' => $size['width'], 'height' => $size['height'], 'src' => $match[0]) ); }else{ global $wp_embed; return $wp_embed->run_shortcode('[embed width="' . $size['width'] . '" height="' . $size['height'] . '" ]' . $match[0] . '[/embed]'); } } } } // item title if( !function_exists('gdlr_core_block_item_title') ){ function gdlr_core_block_item_title( $settings ){ $ret = apply_filters('gdlr_core_block_item_title', '', $settings); if( !empty($ret) ){ return $ret; } $settings['title-size'] = (empty($settings['title-size']) || $settings['title-size'] == '41px')? '': $settings['title-size']; $settings['caption-size'] = (empty($settings['caption-size']) || $settings['caption-size'] == '16px')? '': $settings['caption-size']; $settings['read-more-size'] = (empty($settings['read-more-size']) || $settings['read-more-size'] == '14px')? '': $settings['read-more-size']; $settings['read-more-font-weight'] = empty($settings['read-more-font-weight'])? '': $settings['read-more-font-weight']; if( !empty($settings['title']) || !empty($settings['caption']) ){ $title_align = empty($settings['title-align'])? 'left': $settings['title-align']; $extra_class = ' gdlr-core-' . $title_align . '-align'; $extra_class .= (!isset($settings['pdlr']) || $settings['pdlr'] == true)? ' gdlr-core-item-mglr': ''; $ret .= '<div class="gdlr-core-block-item-title-wrap ' . esc_attr($extra_class) . '" ' . gdlr_core_esc_style(array( 'margin-bottom' => empty($settings['title-wrap-bottom-margin'])? '': $settings['title-wrap-bottom-margin'] )) . ' >'; if( !empty($settings['caption']) && ((!empty($settings['caption-position']) && $settings['caption-position'] == 'top') || (empty($settings['caption-position']) && $title_align == 'left')) ){ $ret .= '<div class="gdlr-core-block-item-caption gdlr-core-top gdlr-core-info-font gdlr-core-skin-caption" ' . gdlr_core_esc_style(array( 'font-size' => $settings['caption-size'], 'font-style' => empty($settings['caption-font-style'])? '': $settings['caption-font-style'], 'font-weight' => empty($settings['caption-font-weight'])? '': $settings['caption-font-weight'], 'letter-spacing' => empty($settings['caption-letter-spacing'])? '': $settings['caption-letter-spacing'], 'text-transform' => empty($settings['caption-text-transform'])? '': $settings['caption-text-transform'], 'color' => empty($settings['caption-color'])? '': $settings['caption-color'], 'margin-bottom' => empty($settings['caption-spaces'])? '': $settings['caption-spaces'] )) . ' >' . gdlr_core_text_filter($settings['caption']) . '</div>'; } if( !empty($settings['title']) ){ $ret .= '<div class="gdlr-core-block-item-title-inner" >'; $ret .= '<h3 class="gdlr-core-block-item-title" ' . gdlr_core_esc_style(array( 'font-size' => $settings['title-size'], 'font-weight' => empty($settings['title-font-weight'])? '': $settings['title-font-weight'], 'font-style' => empty($settings['title-font-style'])? '': $settings['title-font-style'], 'text-transform' => empty($settings['title-text-transform'])? '': $settings['title-text-transform'], 'letter-spacing' => empty($settings['title-letter-spacing'])? '': $settings['title-letter-spacing'], 'line-height' => empty($settings['title-line-height'])? '': $settings['title-line-height'], 'color' => empty($settings['title-color'])? '': $settings['title-color'] )) . ' >'; if( empty($settings['title-left-media']) || $settings['title-left-media'] == 'icon' ){ if( !empty($settings['title-left-icon']) ){ $ret .= '<i class="' . esc_attr($settings['title-left-icon']) . '" ' . gdlr_core_esc_style(array( 'color' => (empty($settings['title-left-icon-color'])? '': $settings['title-left-icon-color']) )) . ' ></i>'; } }else{ if( !empty($settings['title-left-image']) ){ $ret .= gdlr_core_get_image($settings['title-left-image']); } } $ret .= gdlr_core_text_filter($settings['title']); $ret .= '</h3>'; if ( $title_align == 'left' && !empty($settings['read-more-text']) && !empty($settings['read-more-link']) ){ if( empty($settings['read-more-divider']) || $settings['read-more-divider'] != 'none' ){ $settings['read-more-divider'] = empty($settings['read-more-divider'])? 'style-1': $settings['read-more-divider']; $ret .= '<span class="gdlr-core-separator gdlr-core-' . esc_attr($settings['read-more-divider'] ) . '" ' . gdlr_core_esc_style(array( 'color' => empty($settings['read-more-divider-color'])? '': $settings['read-more-divider-color'], 'border-color' => empty($settings['read-more-divider-color'])? '': $settings['read-more-divider-color'] )) . ' ></span>'; } $settings['read-more-style'] = empty($settings['read-more-style'])? 'default': $settings['read-more-style']; $ret .= '<a class="gdlr-core-block-item-read-more gdlr-core-style-' . esc_attr($settings['read-more-style']) . '" href="' . esc_url($settings['read-more-link']) . '" '; $ret .= empty($settings['read-more-target'])? '': 'target="' . esc_attr($settings['read-more-target']) . '" '; $ret .= gdlr_core_esc_style(array( 'font-size' => $settings['read-more-size'], 'font-weight' => $settings['read-more-font-weight'], 'color' => empty($settings['read-more-color'])? '': $settings['read-more-color'], 'border-color' => empty($settings['read-more-color'])? '': $settings['read-more-color'] )); $ret .= ' >' . gdlr_core_text_filter($settings['read-more-text']) . '</a>'; } $ret .= '</div>'; // gdlr-core-block-item-title-inner } if( !empty($settings['caption']) && ((!empty($settings['caption-position']) && $settings['caption-position'] == 'bottom') || (empty($settings['caption-position']) && $title_align == 'center')) ){ $ret .= '<div class="gdlr-core-block-item-caption gdlr-core-bottom gdlr-core-info-font gdlr-core-skin-caption" ' . gdlr_core_esc_style(array( 'font-size' => $settings['caption-size'], 'font-style' => empty($settings['caption-font-style'])? '': $settings['caption-font-style'], 'color' => empty($settings['caption-color'])? '': $settings['caption-color'], 'margin-top' => empty($settings['caption-spaces'])? '': $settings['caption-spaces'] )) . ' >' . gdlr_core_text_filter($settings['caption']) . '</div>'; } if( $title_align == 'center' && !empty($settings['read-more-text']) && !empty($settings['read-more-link']) ){ $ret .= '<a class="gdlr-core-block-item-read-more" href="' . esc_url($settings['read-more-link']) . '" '; $ret .= empty($settings['read-more-target'])? '': 'target="' . esc_attr($settings['read-more-target']) . '" '; $ret .= gdlr_core_esc_style(array( 'font-size' => $settings['read-more-size'], 'font-weight' => $settings['read-more-font-weight'], 'color' => empty($settings['read-more-color'])? '': $settings['read-more-color'], 'border-color' => empty($settings['read-more-color'])? '': $settings['read-more-color'], )); $ret .= ' >' . gdlr_core_text_filter($settings['read-more-text']) . '</a>'; } if( !empty($settings['carousel']) && $settings['carousel'] != 'disable' ){ if( empty($settings['title-carousel-nav-style']) || $settings['title-carousel-nav-style'] == 'default' ){ $nav_style = apply_filters('gdlr_core_block_item_title_nav_filter', 'gdlr-core-round-style'); }else{ $nav_style = $settings['title-carousel-nav-style']; } $ret .= '<div class="gdlr-core-flexslider-nav ' . esc_attr($nav_style) . ' gdlr-core-absolute-center gdlr-core-right" ></div>'; } $ret .= '</div>'; }else if( !empty($settings['carousel']) && $settings['carousel'] != 'disable' ){ if( empty($settings['carousel-navigation']) || in_array($settings['carousel-navigation'], array('navigation', 'both')) ){ $enable_carousel = apply_filters('gdlr_core_block_item_title_only_carousel', 'enable'); if( $enable_carousel == 'enable' ){ $extra_class = (!isset($settings['pdlr']) || $settings['pdlr'] == true)? ' gdlr-core-item-mglr': ''; if( empty($settings['title-carousel-nav-style']) || $settings['title-carousel-nav-style'] == 'default' ){ $nav_style = 'gdlr-core-plain-style'; }else{ $nav_style = $settings['title-carousel-nav-style']; } $ret .= '<div class="gdlr-core-block-item-title-nav ' . esc_attr($extra_class) . '" >'; $ret .= '<div class="gdlr-core-flexslider-nav ' . esc_attr($nav_style) . ' gdlr-core-block-center" ></div>'; $ret .= '</div>'; } } } return $ret; } } if( !function_exists('gdlr_core_block_item_option') ){ function gdlr_core_block_item_option(){ return apply_filters('gdlr_core_block_item_option', array( 'title-align' => array( 'title' => esc_html__('Title Align', 'goodlayers-core'), 'type' => 'combobox', 'options' => array( 'left' => esc_html__('Left', 'goodlayers-core'), 'center' => esc_html__('Center', 'goodlayers-core'), ), 'default' => 'left', ), 'title-left-media' => array( 'title' => esc_html__('Title Left Media', 'goodlayers-core'), 'type' => 'combobox', 'options' => array( 'icon' => esc_html__('Icon', 'goodlayers-core'), 'image' => esc_html__('Image', 'goodlayers-core') ), 'default' => 'icon' ), 'title-left-icon' => array( 'title' => esc_html__('Title Left Icon', 'goodlayers-core'), 'type' => 'icons', 'allow-none' => true, 'wrapper-class' => 'gdlr-core-fullsize', 'condition' => array('title-left-media' => 'icon') ), 'title-left-image' => array( 'title' => esc_html__('Upload Image', 'goodlayers-core'), 'type' => 'upload', 'condition' => array('title-left-media' => 'image') ), 'title' => array( 'title' => esc_html__('Title', 'goodlayers-core'), 'type' => 'text', ), 'caption' => array( 'title' => esc_html__('Caption', 'goodlayers-core'), 'type' => 'textarea', ), 'caption-position' => array( 'title' => esc_html__('Caption Position', 'goodlayers-core'), 'type' => 'combobox', 'options' => array( 'top' => esc_html__('Above Title', 'goodlayers-core'), 'bottom' => esc_html__('Below Title', 'goodlayers-core'), ) ), 'read-more-style' => array( 'title' => esc_html__('Read More Style', 'goodlayers-core'), 'type' => 'combobox', 'options' => array( 'default' => esc_html__('Default', 'goodlayers-core'), 'with-border' => esc_html__('With Border', 'goodlayers-core'), 'right-with-border' => esc_html__('Right Pos - With Border', 'goodlayers-core') ) ), 'read-more-text' => array( 'title' => esc_html__('Read More Text', 'goodlayers-core'), 'type' => 'text', 'default' => esc_html__('Read More', 'goodlayers-core'), ), 'read-more-link' => array( 'title' => esc_html__('Read More Link', 'goodlayers-core'), 'type' => 'text', ), 'read-more-target' => array( 'title' => esc_html__('Read More Target', 'goodlayers-core'), 'type' => 'combobox', 'options' => array( '_self' => esc_html__('Current Screen', 'goodlayers-core'), '_blank' => esc_html__('New Window', 'goodlayers-core'), ), ), 'title-size' => array( 'title' => esc_html__('Title Size', 'goodlayers-core'), 'type' => 'fontslider', 'default' => '41px' ), 'title-font-weight' => array( 'title' => esc_html__('Title Font Weight', 'goodlayers-core'), 'type' => 'text', 'description' => esc_html__('Eg. lighter, bold, normal, 300, 400, 600, 700, 800', 'goodlayers-core') ), 'title-letter-spacing' => array( 'title' => esc_html__('Title Letter Spacing', 'goodlayers-core'), 'type' => 'text', 'data-input-type' => 'pixel', ), 'title-line-height' => array( 'title' => esc_html__('Title Line Height', 'goodlayers-core'), 'type' => 'text', ), 'title-font-style' => array( 'title' => esc_html__('Title Font Style', 'goodlayers-core'), 'type' => 'combobox', 'options' => array( '' => esc_html__('Default', 'goodlayers-core'), 'normal' => esc_html__('Normal', 'goodlayers-core'), 'italic' => esc_html__('Italic', 'goodlayers-core'), ), 'default' => '' ), 'title-text-transform' => array( 'title' => esc_html__('Title Text Transform', 'goodlayers-core'), 'type' => 'combobox', 'data-type' => 'text', 'options' => array( 'none' => esc_html__('None', 'goodlayers-core'), 'uppercase' => esc_html__('Uppercase', 'goodlayers-core'), 'lowercase' => esc_html__('Lowercase', 'goodlayers-core'), 'capitalize' => esc_html__('Capitalize', 'goodlayers-core'), ), 'default' => 'uppercase' ), 'caption-size' => array( 'title' => esc_html__('Caption Size', 'goodlayers-core'), 'type' => 'fontslider', 'default' => '16px' ), 'caption-font-weight' => array( 'title' => esc_html__('Caption Font Weight', 'goodlayers-core'), 'type' => 'text', 'description' => esc_html__('Eg. lighter, bold, normal, 300, 400, 600, 700, 800', 'goodlayers-core') ), 'caption-letter-spacing' => array( 'title' => esc_html__('Caption Letter Spacing', 'goodlayers-core'), 'type' => 'text', 'data-input-type' => 'pixel', ), 'caption-font-style' => array( 'title' => esc_html__('Caption Font Style', 'goodlayers-core'), 'type' => 'combobox', 'options' => array( '' => esc_html__('Default', 'goodlayers-core'), 'normal' => esc_html__('Normal', 'goodlayers-core'), 'italic' => esc_html__('Italic', 'goodlayers-core'), ), 'default' => '' ), 'caption-text-transform' => array( 'title' => esc_html__('Caption Text Transform', 'goodlayers-core'), 'type' => 'combobox', 'data-type' => 'text', 'options' => array( '' => esc_html__('Default', 'goodlayers-core'), 'none' => esc_html__('None', 'goodlayers-core'), 'uppercase' => esc_html__('Uppercase', 'goodlayers-core'), 'lowercase' => esc_html__('Lowercase', 'goodlayers-core'), 'capitalize' => esc_html__('Capitalize', 'goodlayers-core'), ), ), 'caption-spaces' => array( 'title' => esc_html__('Space Between Caption ( And Title )', 'goodlayers-core'), 'type' => 'text', 'data-input-type' => 'pixel', 'default' => '' ), 'read-more-size' => array( 'title' => esc_html__('Read More Size', 'goodlayers-core'), 'type' => 'fontslider', 'default' => '14px', ), 'read-more-font-weight' => array( 'title' => esc_html__('Read More Font Weight', 'goodlayers-core'), 'type' => 'text', 'description' => esc_html__('Eg. lighter, bold, normal, 300, 400, 600, 700, 800', 'goodlayers-core') ), 'title-left-icon-color' => array( 'title' => esc_html__('Title Left Icon Color', 'goodlayers-core'), 'type' => 'colorpicker' ), 'title-color' => array( 'title' => esc_html__('Title Color', 'goodlayers-core'), 'type' => 'colorpicker' ), 'caption-color' => array( 'title' => esc_html__('Caption Color', 'goodlayers-core'), 'type' => 'colorpicker' ), 'read-more-color' => array( 'title' => esc_html__('Read More Color', 'goodlayers-core'), 'type' => 'colorpicker', ), 'read-more-divider' => array( 'title' => esc_html__('Read More Divider', 'goodlayers-core'), 'type' => 'combobox', 'options' => array( 'style-1' => esc_html__('Style 1', 'goodlayers-core'), 'style-2' => esc_html__('Style 2', 'goodlayers-core'), 'none' => esc_html__('None', 'goodlayers-core') ) ), 'read-more-divider-color' => array( 'title' => esc_html__('Read More Divider Color', 'goodlayers-core'), 'type' => 'colorpicker', 'condition' => array( 'title-align' => 'left' ) ), 'title-wrap-bottom-margin' => array( 'title' => esc_html__('Title Wrap Bottom Margin', 'goodlayers-core'), 'type' => 'text', 'data-input-type' => 'pixel', ), 'title-carousel-nav-style' => array( 'title' => esc_html__('Title Carousel Nav Style (if any)', 'goodlayers-core'), 'type' => 'combobox', 'options' => array( 'default' => esc_html__('Default', 'goodlayers-core'), 'gdlr-core-plain-style gdlr-core-small' => esc_html__('Small Plain Style', 'goodlayers-core'), 'gdlr-core-plain-style' => esc_html__('Plain Style', 'goodlayers-core'), 'gdlr-core-plain-style-2' => esc_html__('Plain Style 2', 'goodlayers-core'), 'gdlr-core-plain-circle-style' => esc_html__('Plain Circle Style', 'goodlayers-core'), 'gdlr-core-round-style' => esc_html__('Large Round Style', 'goodlayers-core'), 'gdlr-core-round-style gdlr-core-small' => esc_html__('Small Round Style', 'goodlayers-core'), 'gdlr-core-rectangle-style' => esc_html__('Rectangle Style', 'goodlayers-core'), 'gdlr-core-rectangle-style gdlr-core-large' => esc_html__('Large Rectangle Style', 'goodlayers-core'), ) ) )); } } // rating if( !function_exists('gdlr_core_get_rating') ){ function gdlr_core_get_rating( $score, $options = array(), $css_atts = array() ){ $ret = '<span class="gdlr-core-rating ' . (empty($options['class'])? '': esc_attr($options['class'])) . '" ' . gdlr_core_esc_style($css_atts) . '>'; for( $i = 2; $i <= 10; $i += 2 ){ if( $score - $i >= - 0.5 ){ $ret .= '<i class="fa fa-star" ' . gdlr_core_esc_style(array( 'color' => empty($options['rating-color'])? '': $options['rating-color'] )) . ' ></i>'; }else if( $score - $i <= -1.5 ){ $ret .= '<i class="fa fa-star-o" ' . gdlr_core_esc_style(array( 'color' => empty($options['rating-color'])? '': $options['rating-color'] )) . ' ></i>'; }else{ $ret .= '<i class="fa fa-star-half-o" ' . gdlr_core_esc_style(array( 'color' => empty($options['rating-color'])? '': $options['rating-color'] )) . ' ></i>'; } } $ret .= '</span>'; return $ret; } }
Save
Cancel