Submit
Path:
~
/
home
/
getwphos
/
public_html
/
brueggemann
/
wp-content
/
plugins
/
wanderland-core
/
shortcodes
/
process
/
File Content:
process-item.php
<?php namespace WanderlandCore\CPT\Shortcodes\Process; use WanderlandCore\Lib; class ProcessItem implements Lib\ShortcodeInterface { private $base; function __construct() { $this->base = 'mkdf_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__( 'Process Item', 'wanderland-core' ), 'base' => $this->base, 'category' => esc_html__( 'by WANDERLAND', 'wanderland-core' ), 'icon' => 'icon-wpb-process-item extended-custom-icon', 'as_child' => array( 'only' => 'mkdf_process' ), 'params' => array( array( 'type' => 'textfield', 'param_name' => 'custom_class', 'heading' => esc_html__( 'Custom CSS Class', 'wanderland-core' ), 'description' => esc_html__( 'Style particular content element differently - add a class name and refer to it in custom CSS', 'wanderland-core' ) ), array( 'type' => 'textfield', 'param_name' => 'title', 'heading' => esc_html__( 'Title', 'wanderland-core' ) ), array( 'type' => 'dropdown', 'param_name' => 'title_tag', 'heading' => esc_html__( 'Title Tag', 'wanderland-core' ), 'value' => array_flip( wanderland_mikado_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', 'wanderland-core' ), 'dependency' => array( 'element' => 'title', 'not_empty' => true ) ), array( 'type' => 'textarea', 'param_name' => 'text', 'heading' => esc_html__( 'Text', 'wanderland-core' ) ), array( 'type' => 'colorpicker', 'param_name' => 'text_color', 'heading' => esc_html__( 'Text Color', 'wanderland-core' ), 'dependency' => array( 'element' => 'text', 'not_empty' => true ) ), array( 'type' => 'textfield', 'param_name' => 'text_top_margin', 'heading' => esc_html__( 'Text Top Margin (px)', 'wanderland-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 = wanderland_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: ' . wanderland_mikado_filter_px( $params['text_top_margin'] ) . 'px'; } return implode( ';', $styles ); } }
Submit
FILE
FOLDER
Name
Size
Permission
Action
assets
---
0755
templates
---
0755
functions.php
1849 bytes
0644
load.php
226 bytes
0644
process-item.php
4060 bytes
0644
process.php
3642 bytes
0644
N4ST4R_ID | Naxtarrr