| 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/process/ |
Upload File : |
<?php
namespace ElatedCore\CPT\Shortcodes\Process;
use ElatedCore\Lib;
class ProcessItem implements Lib\ShortcodeInterface {
private $base;
function __construct() {
$this->base = 'eltd_process_item';
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 Process Item', 'eltd-core' ),
'base' => $this->base,
'category' => esc_html__( 'by ELATED', 'eltd-core' ),
'icon' => 'icon-wpb-process-item extended-custom-icon',
'as_child' => array( 'only' => 'eltd_process' ),
'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' => 'textfield',
'param_name' => 'title',
'heading' => esc_html__( 'Title', 'eltd-core' )
),
array(
'type' => 'dropdown',
'param_name' => 'title_tag',
'heading' => esc_html__( 'Title Tag', 'eltd-core' ),
'value' => array_flip( trackstore_elated_get_title_tag( true ) ),
'save_always' => true,
'dependency' => array( 'element' => 'title', 'not_empty' => true )
),
array(
'type' => 'colorpicker',
'param_name' => 'title_color',
'heading' => esc_html__( 'Title Color', 'eltd-core' ),
'dependency' => array( 'element' => 'title', 'not_empty' => true )
),
array(
'type' => 'textarea',
'param_name' => 'text',
'heading' => esc_html__( 'Text', 'eltd-core' )
),
array(
'type' => 'colorpicker',
'param_name' => 'text_color',
'heading' => esc_html__( 'Text Color', 'eltd-core' ),
'dependency' => array( 'element' => 'text', 'not_empty' => true )
),
array(
'type' => 'textfield',
'param_name' => 'text_top_margin',
'heading' => esc_html__( 'Text Top Margin (px)', 'eltd-core' ),
'dependency' => array( 'element' => 'text', 'not_empty' => true )
)
)
)
);
}
}
public function render( $atts, $content = null ) {
$args = array(
'custom_class' => '',
'title' => '',
'title_tag' => 'h4',
'title_color' => '',
'text' => '',
'text_color' => '',
'text_top_margin' => ''
);
$params = shortcode_atts( $args, $atts );
$params['holder_classes'] = $this->getHolderClasses( $params );
$params['title_tag'] = ! empty( $params['title_tag'] ) ? $params['title_tag'] : $args['title_tag'];
$params['title_styles'] = $this->getTitleStyles( $params );
$params['text_styles'] = $this->getTextStyles( $params );
$html = eltd_core_get_shortcode_module_template_part( 'templates/process-item-template', 'process', '', $params );
return $html;
}
private function getHolderClasses( $params ) {
$holderClasses = array();
$holderClasses[] = ! empty( $params['custom_class'] ) ? esc_attr( $params['custom_class'] ) : '';
return implode( ' ', $holderClasses );
}
private function getTitleStyles( $params ) {
$styles = array();
if ( ! empty( $params['title_color'] ) ) {
$styles[] = 'color: ' . $params['title_color'];
}
return implode( ';', $styles );
}
private function getTextStyles( $params ) {
$styles = array();
if ( ! empty( $params['text_color'] ) ) {
$styles[] = 'color: ' . $params['text_color'];
}
if ( $params['text_top_margin'] !== '' ) {
$styles[] = 'margin-top: ' . trackstore_elated_filter_px( $params['text_top_margin'] ) . 'px';
}
return implode( ';', $styles );
}
}