.
*
* @package Redux_Field
* @subpackage Border
* @version 3.0.0
*/
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
// Don't duplicate me!
if ( ! class_exists( 'ReduxFramework_border' ) ) {
class ReduxFramework_border {
/**
* Field Constructor.
* Required - must call the parent constructor, then assign field and value to vars, and obviously call the render field function
*
* @since ReduxFramework 1.0.0
*/
function __construct( $field = array(), $value = '', $parent ) {
$this->parent = $parent;
$this->field = $field;
$this->value = $value;
} //function
private function stripAlphas($s) {
// Regex is our friend. THERE ARE FOUR LIGHTS!!
return preg_replace('/[^\d.-]/', '', $s);
}
/**
* Field Render Function.
* Takes the vars and outputs the HTML for the field in the settings
*
* @since ReduxFramework 1.0.0
*/
function render() {
// No errors please
$defaults = array(
'top' => true,
'bottom' => true,
'all' => true,
'style' => true,
'color' => true,
'left' => true,
'right' => true,
);
$this->field = wp_parse_args( $this->field, $defaults );
$defaults = array(
'top' => '',
'right' => '',
'bottom' => '',
'left' => '',
'color' => '',
'style' => '',
);
$this->value = wp_parse_args( $this->value, $defaults );
$value = array(
'top' => isset( $this->value['border-top'] ) ? filter_var( $this->value['border-top'], FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION ) : filter_var( $this->value['top'], FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION ),
'right' => isset( $this->value['border-right'] ) ? filter_var( $this->value['border-right'], FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION ) : filter_var( $this->value['right'], FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION ),
'bottom' => isset( $this->value['border-bottom'] ) ? filter_var( $this->value['border-bottom'], FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION ) : filter_var( $this->value['bottom'], FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION ),
'left' => isset( $this->value['border-left'] ) ? filter_var( $this->value['border-left'], FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION ) : filter_var( $this->value['left'], FILTER_SANITIZE_NUMBER_FLOAT, FILTER_FLAG_ALLOW_FRACTION ),
'color' => isset( $this->value['border-color'] ) ? $this->value['border-color'] : $this->value['color'],
'style' => isset( $this->value['border-style'] ) ? $this->value['border-style'] : $this->value['style']
);
if ( ( isset( $this->value['width'] ) || isset( $this->value['border-width'] ) ) ) {
if ( isset( $this->value['border-width'] ) && ! empty( $this->value['border-width'] ) ) {
$this->value['width'] = $this->value['border-width'];
}
$this->value['width'] = $this->stripAlphas($this->value['width']);
$value['top'] = $this->value['width'];
$value['right'] = $this->value['width'];
$value['bottom'] = $this->value['width'];
$value['left'] = $this->value['width'];
}
$this->value = $value;
$defaults = array(
'top' => '',
'right' => '',
'bottom' => '',
'left' => '',
);
$this->value = wp_parse_args( $this->value, $defaults );
if ( isset( $this->field['select2'] ) ) { // if there are any let's pass them to js
$select2_params = json_encode( $this->field['select2'] );
$select2_params = htmlspecialchars( $select2_params, ENT_QUOTES );
echo '';
}
echo '';
if ( isset( $this->field['all'] ) && $this->field['all'] == true ) {
echo '
';
}
echo '';
echo '';
echo '';
echo '';
if ( ! isset( $this->field['all'] ) || $this->field['all'] !== true ) {
/**
* Top
* */
if ( $this->field['top'] === true ) {
echo '
';
}
/**
* Right
* */
if ( $this->field['right'] === true ) {
echo '
';
}
/**
* Bottom
* */
if ( $this->field['bottom'] === true ) {
echo '
';
}
/**
* Left
* */
if ( $this->field['left'] === true ) {
echo '
';
}
}
/**
* Border-style
* */
if ( $this->field['style'] != false ) {
$options = array(
'solid' => 'Solid',
'dashed' => 'Dashed',
'dotted' => 'Dotted',
'double' => "Double",
'none' => 'None'
);
echo '';
} else {
echo '';
}
/**
* Color
* */
if ( $this->field['color'] != false ) {
$default = isset( $this->field['default']['border-color'] ) ? $this->field['default']['border-color'] : '';
if ( empty( $default ) ) {
$default = ( isset( $this->field['default']['color'] ) ) ? $this->field['default']['color'] : '#ffffff';
}
echo '';
} else {
echo '';
}
}
//function
/**
* Enqueue Function.
* If this field requires any scripts, or css define this function and register/enqueue the scripts/css
*
* @since ReduxFramework 1.0.0
*/
function enqueue() {
$min = Redux_Functions::isMin();
if (!wp_style_is ( 'select2-css' )) {
wp_enqueue_style( 'select2-css' );
}
if (!wp_style_is ( 'wp-color-picker' )) {
wp_enqueue_style( 'wp-color-picker' );
}
if (!wp_script_is ( 'redux-field-border-js' )) {
wp_enqueue_script(
'redux-field-border-js',
ReduxFramework::$_url . 'inc/fields/border/field_border' . $min . '.js',
array( 'jquery', 'select2-js', 'wp-color-picker', 'redux-js' ),
time(),
true
);
}
if ($this->parent->args['dev_mode']) {
if (!wp_style_is ( 'redux-color-picker-css' )) {
wp_enqueue_style( 'redux-color-picker-css' );
}
if (!wp_style_is ( 'redux-field-border-css' )) {
wp_enqueue_style(
'redux-field-border-css',
ReduxFramework::$_url . 'inc/fields/border/field_border.css',
array(),
time(),
'all'
);
}
}
} //function
public function output() {
if ( isset( $this->field['all'] ) && true == $this->field['all'] ) {
$borderWidth = isset( $this->value['border-width'] ) ? $this->value['border-width'] : '0px';
$val = isset( $this->value['border-top'] ) ? $this->value['border-top'] : $borderWidth;
$this->value['border-top'] = $val;
$this->value['border-bottom'] = $val;
$this->value['border-left'] = $val;
$this->value['border-right'] = $val;
}
$cleanValue = array(
'color' => ! empty( $this->value['border-color'] ) ? $this->value['border-color'] : 'inherit',
'style' => ! empty( $this->value['border-style'] ) ? $this->value['border-style'] : 'inherit'
);
$borderWidth = '0px';
if ( isset( $this->value['border-width'] ) ) {
$borderWidth = $this->value['border-width'];
}
$this->field['top'] = isset( $this->field['top'] ) ? $this->field['top'] : true;
$this->field['bottom'] = isset( $this->field['bottom'] ) ? $this->field['bottom'] : true;
$this->field['left'] = isset( $this->field['left'] ) ? $this->field['left'] : true;
$this->field['right'] = isset( $this->field['right'] ) ? $this->field['right'] : true;
if ( $this->field['top'] === true ) {
$cleanValue['top'] = ! empty( $this->value['border-top'] ) ? $this->value['border-top'] : $borderWidth;
}
if ( $this->field['bottom'] == true ) {
$cleanValue['bottom'] = ! empty( $this->value['border-bottom'] ) ? $this->value['border-bottom'] : $borderWidth;
}
if ( $this->field['left'] === true ) {
$cleanValue['left'] = ! empty( $this->value['border-left'] ) ? $this->value['border-left'] : $borderWidth;
}
if ( $this->field['right'] === true ) {
$cleanValue['right'] = ! empty( $this->value['border-right'] ) ? $this->value['border-right'] : $borderWidth;
}
$style = "";
//absolute, padding, margin
if ( ! isset( $this->field['all'] ) || $this->field['all'] != true ) {
foreach ( $cleanValue as $key => $value ) {
if ( $key == "color" || $key == "style" ) {
continue;
}
$style .= 'border-' . $key . ':' . $value . ' ' . $cleanValue['style'] . ' ' . $cleanValue['color'] . ';';
}
} else {
$style .= 'border:' . $cleanValue['top'] . ' ' . $cleanValue['style'] . ' ' . $cleanValue['color'] . ';';
}
if ( ! empty( $this->field['output'] ) && is_array( $this->field['output'] ) ) {
$keys = implode( ",", $this->field['output'] );
$this->parent->outputCSS .= $keys . "{" . $style . '}';
}
if ( ! empty( $this->field['compiler'] ) && is_array( $this->field['compiler'] ) ) {
$keys = implode( ",", $this->field['compiler'] );
$this->parent->compilerCSS .= $keys . "{" . $style . '}';
}
}
} //class
}