File "Spacing.php"
Full Path: /home/attunedd/public_html/byp/wp-content/plugins/carousel-slider/includes/Supports/FormFields/Spacing.php
File size: 1.18 KB
MIME-type: text/x-php
Charset: utf-8
<?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;
}
}