| Server IP : 34.87.99.72 / Your IP : 216.73.217.31 Web Server : Apache/2.4.46 (Unix) OpenSSL/1.1.1n System : Linux zlock-bitnami-lamp-prod-v2-vm 4.19.0-16-cloud-amd64 #1 SMP Debian 4.19.181-1 (2021-03-19) x86_64 User : bitnami ( 1000) PHP Version : 7.4.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /opt/bitnami/apache/htdocs/web/wp-content/themes/kalium/vc_templates/ |
Upload File : |
<?php
/**
* Logo Entry
*
* Laborator.co
* www.laborator.co
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Direct access not allowed.
}
global $client_logo_index, $columns_count, $reveal_effect, $hover_style, $img_size, $retina_image;
// Atts
if ( function_exists( 'vc_map_get_attributes' ) ) {
$atts = vc_map_get_attributes( $this->getShortcode(), $atts );
}
extract( $atts );
// Element Class
$class = $this->getExtraClass( $el_class );
$css_class = apply_filters( VC_SHORTCODE_CUSTOM_CSS_FILTER_TAG, $class, $this->settings['base'], $atts );
// If no image return empty
if ( ! $image ) {
return;
}
$image = wpb_getImageBySize( array( 'attach_id' => $image, 'thumb_size' => $img_size, 'class' => 'img-responsive' ) );
$link = vc_build_link( $link );
// Item Class
$item_class = array( 'client-logos-col' );
if ( $link['url'] ) {
$item_class[] = 'with-link';
}
switch ( $columns_count ) {
// 2 Columns
case 2:
$item_class[] = 'col-6';
$wow_max_delay = 0.5;
break;
// 3 Columns
case 3:
$item_class[] = 'col-4';
$wow_max_delay = 1.2;
break;
// 5 Columns
case 5:
$item_class[] = 'col-2-4';
$wow_max_delay = 1.6;
break;
// 6 Columns
case 6:
$item_class[] = 'col-2';
$wow_max_delay = 1.7;
break;
// 7 Columns
case 7:
$item_class[] = 'col-1-7';
$wow_max_delay = 1.8;
break;
// 12 Columns
case 12:
$item_class[] = 'col-1';
$wow_max_delay = 2;
break;
// 4 Columns
default:
$wow_max_delay = 1.5;
$columns_count = 4;
}
// Retina image
if ( $retina_image && preg_match( '/<img .*?width="(?<width>[0-9]{2,})"/', kalium_get_array_key( $image, 'thumbnail' ), $matches ) ) {
$retina_selector = 'client-logos-retina-' . $client_logo_index . mt_rand( 1000, 9999 );
$item_class[] = $retina_selector;
kalium_append_custom_css( ".logos-holder .{$retina_selector} .c-logo img", sprintf( "width: 100%%; max-width:%spx", absint( $matches['width'] / 2 ) ) );
}
// Hover opacity effect
if ( 'hover-opacity' === $hover_style ) {
$item_class[] = 'opacity-on-hover';
}
// Wow Effect
$wow_effect = $reveal_effect;
$wow_one_by_one = false;
if ( preg_match( '/-one/', $wow_effect ) ) {
$wow_one_by_one = true;
$wow_effect = str_replace( '-one', '', $wow_effect );
}
$wow_delay = min( $client_logo_index * 0.1, $wow_max_delay );
?>
<div class="<?php echo implode( ' ', $item_class ); ?>">
<div class="c-logo<?php echo $wow_effect ? esc_attr( " wow {$wow_effect}" ) : ""; ?>" data-wow-duration="1s"<?php if ( $wow_one_by_one ) : ?> data-wow-delay="<?php echo esc_attr( $wow_delay ); ?>s"<?php endif; ?>>
<?php if ( $link['url'] ) : ?>
<a href="<?php echo esc_url( $link['url'] ); ?>" target="<?php echo esc_attr( $link['target'] ); ?>"><?php echo $image['thumbnail']; ?></a>
<?php else: ?>
<?php echo $image['thumbnail']; ?>
<?php endif; ?>
<?php if ( ! in_array( $hover_style, [ 'none', 'hover-opacity' ] ) ) : ?>
<div class="hover-state<?php echo $hover_style == 'distanced' ? ' with-spacing' : ''; ?>">
<div class="hover-state-content">
<h3>
<?php if ( $link['url'] ) : ?>
<a href="<?php echo esc_url( $link['url'] ); ?>" target="<?php echo esc_attr( $link['target'] ); ?>"><?php echo esc_html( $title ); ?></a>
<?php else: ?>
<?php echo esc_attr( $title ); ?>
<?php endif; ?>
</h3>
<?php if ( $description ) : ?>
<div class="description">
<?php echo wp_kses_post( wpautop( $description ) ); ?>
</div>
<?php endif; ?>
</div>
</div>
<?php endif; ?>
</div>
</div>
<?php
// End of File
$client_logo_index ++;