Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
byp
/
wp-content
/
plugins
/
carousel-slider
/
includes
/
Supports
/
FormFields
:
Spacing.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace CarouselSlider\Supports\FormFields; /** * Spacing class */ class Spacing extends BaseField { /** * Render field html * * @inheritDoc */ public function render(): string { $default = (array) $this->get_setting( 'default', [] ); $value = (array) $this->get_value(); $name = $this->get_name(); $html = ''; $dimensions = [ 'top', 'right', 'bottom', 'left' ]; foreach ( $dimensions as $dimension ) { if ( ! array_key_exists( $dimension, $default ) ) { continue; } $attr_name = $name . '[' . $dimension . ']'; $attr_value = $value[ $dimension ] ?? $default[ $dimension ]; if ( 'top' === $dimension ) { $icon_class = 'dashicons dashicons-arrow-up-alt'; } elseif ( 'bottom' === $dimension ) { $icon_class = 'dashicons dashicons-arrow-down-alt'; } else { $icon_class = 'dashicons dashicons-arrow-' . $dimension . '-alt'; } $html .= '<div class="shapla-dimension">'; $html .= '<span class="add-on"><i class="' . esc_attr( $icon_class ) . '"></i></span>'; $html .= '<input type="text" name="' . esc_attr( $attr_name ) . '" value="' . esc_attr( $attr_value ) . '">'; $html .= '</div>'; } return $html; } }