| Server IP : 146.59.209.152 / Your IP : 216.73.216.46 Web Server : Apache System : Linux webm005.cluster131.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64 User : infrafs ( 43850) PHP Version : 8.2.29 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/infrafs/www/wp-content/plugins/eltd-core/shortcodes/separator/ |
Upload File : |
<?php
namespace ElatedCore\CPT\Shortcodes\Separator;
use ElatedCore\Lib;
class Separator implements Lib\ShortcodeInterface {
private $base;
function __construct() {
$this->base = 'eltd_separator';
add_action( 'vc_before_init', array( $this, 'vcMap' ) );
}
public function getBase() {
return $this->base;
}
public function vcMap() {
if ( function_exists( 'vc_map' ) ) {
vc_map(
array(
'name' => esc_html__( 'Elated Separator', 'eltd-core' ),
'base' => $this->base,
'category' => esc_html__( 'by ELATED', 'eltd-core' ),
'icon' => 'icon-wpb-separator extended-custom-icon',
'show_settings_on_create' => true,
'class' => 'wpb_vc_separator',
'custom_markup' => '<div></div>',
'params' => array(
array(
'type' => 'textfield',
'param_name' => 'custom_class',
'heading' => esc_html__( 'Custom CSS Class', 'eltd-core' ),
'description' => esc_html__( 'Style particular content element differently - add a class name and refer to it in custom CSS', 'eltd-core' )
),
array(
'type' => 'dropdown',
'param_name' => 'type',
'heading' => esc_html__( 'Type', 'eltd-core' ),
'value' => array(
esc_html__( 'Normal', 'eltd-core' ) => 'normal',
esc_html__( 'Full Width', 'eltd-core' ) => 'full-width'
)
),
array(
'type' => 'dropdown',
'param_name' => 'position',
'heading' => esc_html__( 'Position', 'eltd-core' ),
'value' => array(
esc_html__( 'Center', 'eltd-core' ) => 'center',
esc_html__( 'Left', 'eltd-core' ) => 'left',
esc_html__( 'Right', 'eltd-core' ) => 'right'
),
'dependency' => array( 'element' => 'type', 'value' => array( 'normal' ) )
),
array(
'type' => 'colorpicker',
'param_name' => 'color',
'heading' => esc_html__( 'Color', 'eltd-core' )
),
array(
'type' => 'dropdown',
'param_name' => 'border_style',
'heading' => esc_html__( 'Style', 'eltd-core' ),
'value' => array(
esc_html__( 'Default', 'eltd-core' ) => '',
esc_html__( 'Dashed', 'eltd-core' ) => 'dashed',
esc_html__( 'Solid', 'eltd-core' ) => 'solid',
esc_html__( 'Dotted', 'eltd-core' ) => 'dotted'
),
'save_always' => true
),
array(
'type' => 'textfield',
'param_name' => 'width',
'heading' => esc_html__( 'Width (px or %)', 'eltd-core' ),
'dependency' => array( 'element' => 'type', 'value' => array( 'normal' ) )
),
array(
'type' => 'textfield',
'param_name' => 'thickness',
'heading' => esc_html__( 'Thickness (px)', 'eltd-core' )
),
array(
'type' => 'textfield',
'param_name' => 'top_margin',
'heading' => esc_html__( 'Top Margin (px or %)', 'eltd-core' )
),
array(
'type' => 'textfield',
'param_name' => 'bottom_margin',
'heading' => esc_html__( 'Bottom Margin (px or %)', 'eltd-core' )
)
)
)
);
}
}
public function render( $atts, $content = null ) {
$args = array(
'custom_class' => '',
'type' => '',
'position' => 'center',
'color' => '',
'border_style' => '',
'width' => '',
'thickness' => '',
'top_margin' => '',
'bottom_margin' => ''
);
$params = shortcode_atts( $args, $atts );
$params['holder_classes'] = $this->getHolderClasses( $params );
$params['holder_styles'] = $this->getHolderStyles( $params );
$html = eltd_core_get_shortcode_module_template_part( 'templates/separator-template', 'separator', '', $params );
return $html;
}
private function getHolderClasses( $params ) {
$holderClasses = array();
$holderClasses[] = ! empty( $params['custom_class'] ) ? esc_attr( $params['custom_class'] ) : '';
$holderClasses[] = ! empty( $params['position'] ) ? 'eltd-separator-' . $params['position'] : '';
$holderClasses[] = ! empty( $params['type'] ) ? 'eltd-separator-' . $params['type'] : '';
return implode( ' ', $holderClasses );
}
private function getHolderStyles( $params ) {
$styles = array();
if ( $params['color'] !== '' ) {
$styles[] = 'border-color: ' . $params['color'];
}
if ( $params['border_style'] !== '' ) {
$styles[] = 'border-style: ' . $params['border_style'];
}
if ( $params['width'] !== '' ) {
if ( trackstore_elated_string_ends_with( $params['width'], '%' ) || trackstore_elated_string_ends_with( $params['width'], 'px' ) ) {
$styles[] = 'width: ' . $params['width'];
} else {
$styles[] = 'width: ' . trackstore_elated_filter_px( $params['width'] ) . 'px';
}
}
if ( $params['thickness'] !== '' ) {
$styles[] = 'border-bottom-width: ' . trackstore_elated_filter_px( $params['thickness'] ) . 'px';
}
if ( $params['top_margin'] !== '' ) {
if ( trackstore_elated_string_ends_with( $params['top_margin'], '%' ) || trackstore_elated_string_ends_with( $params['top_margin'], 'px' ) ) {
$styles[] = 'margin-top: ' . $params['top_margin'];
} else {
$styles[] = 'margin-top: ' . trackstore_elated_filter_px( $params['top_margin'] ) . 'px';
}
}
if ( $params['bottom_margin'] !== '' ) {
if ( trackstore_elated_string_ends_with( $params['bottom_margin'], '%' ) || trackstore_elated_string_ends_with( $params['bottom_margin'], 'px' ) ) {
$styles[] = 'margin-bottom: ' . $params['bottom_margin'];
} else {
$styles[] = 'margin-bottom: ' . trackstore_elated_filter_px( $params['bottom_margin'] ) . 'px';
}
}
return implode( ';', $styles );
}
}