File "process-item.php"
Full Path: /home/shadsolw/public_html/wp-content/plugins/edge-core/shortcodes/process/process-item.php
File size: 3.88 KB
MIME-type: text/x-php
Charset: utf-8
<?php
namespace EdgeCore\CPT\Shortcodes\Process;
use EdgeCore\Lib;
class ProcessItem implements Lib\ShortcodeInterface {
private $base;
function __construct() {
$this->base = 'edgtf_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__( 'Edge Process Item', 'edge-core' ),
'base' => $this->base,
'category' => esc_html__( 'by EDGE', 'edge-core' ),
'icon' => 'icon-wpb-process-item extended-custom-icon',
'as_child' => array( 'only' => 'edgtf_process' ),
'params' => array(
array(
'type' => 'textfield',
'param_name' => 'custom_class',
'heading' => esc_html__( 'Custom CSS Class', 'edge-core' ),
'description' => esc_html__( 'Style particular content element differently - add a class name and refer to it in custom CSS', 'edge-core' )
),
array(
'type' => 'textfield',
'param_name' => 'title',
'heading' => esc_html__( 'Title', 'edge-core' )
),
array(
'type' => 'dropdown',
'param_name' => 'title_tag',
'heading' => esc_html__( 'Title Tag', 'edge-core' ),
'value' => array_flip( aalto_edge_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', 'edge-core' ),
'dependency' => array( 'element' => 'title', 'not_empty' => true )
),
array(
'type' => 'textarea',
'param_name' => 'text',
'heading' => esc_html__( 'Text', 'edge-core' )
),
array(
'type' => 'colorpicker',
'param_name' => 'text_color',
'heading' => esc_html__( 'Text Color', 'edge-core' ),
'dependency' => array( 'element' => 'text', 'not_empty' => true )
),
array(
'type' => 'textfield',
'param_name' => 'text_top_margin',
'heading' => esc_html__( 'Text Top Margin (px)', 'edge-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 = edgtf_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: ' . aalto_edge_filter_px( $params['text_top_margin'] ) . 'px';
}
return implode( ';', $styles );
}
}