# adminify/3.1.9/Libs/adminify-framework/fields/background/background.php

Adminify – White Label, Admin Menu Editor, Login Customizer, version 3.1.9. 372 lines.

- Page: https://pluginprobe.com/plugins/adminify/3.1.9/code/Libs/adminify-framework/fields/background/background.php
- Raw: https://pluginprobe.com/plugins/adminify/3.1.9/raw/Libs/adminify-framework/fields/background/background.php
- Modified: 2023-11-11T08:00:10+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/adminify/3.1.9/code/Libs/adminify-framework/fields/background/background.php#L10-L20`.

```php
<?php if ( ! defined( 'ABSPATH' ) ) {
	die; } // Cannot access directly.
/**
 *
 * Field: background
 *
 * @since 1.0.0
 * @version 1.0.0
 */
if ( ! class_exists( 'ADMINIFY_Field_background' ) ) {
	class ADMINIFY_Field_background extends ADMINIFY_Fields {

		public function __construct( $field, $value = '', $unique = '', $where = '', $parent = '' ) {
			parent::__construct( $field, $value, $unique, $where, $parent );
		}

		public function render() {
			$args = wp_parse_args(
				$this->field,
				[
					'background_color'              => true,
					'background_image'              => true,
					'background_position'           => true,
					'background_repeat'             => true,
					'background_attachment'         => true,
					'background_size'               => true,
					'background_origin'             => false,
					'background_clip'               => false,
					'background_blend_mode'         => false,
					'background_gradient'           => false,
					'background_gradient_color'     => true,
					'background_gradient_direction' => true,
					'background_image_preview'      => true,
					'background_auto_attributes'    => false,
					'compact'                       => false,
					'background_image_library'      => 'image',
					'background_image_placeholder'  => esc_html__( 'Not selected', 'adminify' ),
				]
			);

			if ( $args['compact'] ) {
				$args['background_color']           = false;
				$args['background_auto_attributes'] = true;
			}

			$default_value = [
				'background-color'              => '',
				'background-image'              => '',
				'background-position'           => '',
				'background-repeat'             => '',
				'background-attachment'         => '',
				'background-size'               => '',
				'background-origin'             => '',
				'background-clip'               => '',
				'background-blend-mode'         => '',
				'background-gradient-color'     => '',
				'background-gradient-direction' => '',
			];

			$default_value = ( ! empty( $this->field['default'] ) ) ? wp_parse_args( $this->field['default'], $default_value ) : $default_value;

			$this->value = wp_parse_args( $this->value, $default_value );

			echo wp_kses_post( $this->field_before() );

			echo '<div class="adminify--background-colors">';

			//
			// Background Color
			if ( ! empty( $args['background_color'] ) ) {
				echo '<div class="adminify--color">';

				echo ( ! empty( $args['background_gradient'] ) ) ? '<div class="adminify--title">' . esc_html__( 'From', 'adminify' ) . '</div>' : '';

				ADMINIFY::field(
					[
						'id'      => 'background-color',
						'type'    => 'color',
						'default' => $default_value['background-color'],
					],
					$this->value['background-color'],
					$this->field_name(),
					'field/background'
				);

				echo '</div>';
			}

			//
			// Background Gradient Color
			if ( ! empty( $args['background_gradient_color'] ) && ! empty( $args['background_gradient'] ) ) {
				echo '<div class="adminify--color">';

				echo ( ! empty( $args['background_gradient'] ) ) ? '<div class="adminify--title">' . esc_html__( 'To', 'adminify' ) . '</div>' : '';

				ADMINIFY::field(
					[
						'id'      => 'background-gradient-color',
						'type'    => 'color',
						'default' => $default_value['background-gradient-color'],
					],
					$this->value['background-gradient-color'],
					$this->field_name(),
					'field/background'
				);

				echo '</div>';
			}

			//
			// Background Gradient Direction
			if ( ! empty( $args['background_gradient_direction'] ) && ! empty( $args['background_gradient'] ) ) {
				echo '<div class="adminify--color">';

				echo ( ! empty( $args['background_gradient'] ) ) ? '<div class="adminify---title">' . esc_html__( 'Direction', 'adminify' ) . '</div>' : '';

				ADMINIFY::field(
					[
						'id'      => 'background-gradient-direction',
						'type'    => 'select',
						'options' => [
							''          => esc_html__( 'Gradient Direction', 'adminify' ),
							'to bottom' => esc_html__( '&#8659; top to bottom', 'adminify' ),
							'to right'  => esc_html__( '&#8658; left to right', 'adminify' ),
							'135deg'    => esc_html__( '&#8664; corner top to right', 'adminify' ),
							'-135deg'   => esc_html__( '&#8665; corner top to left', 'adminify' ),
						],
					],
					$this->value['background-gradient-direction'],
					$this->field_name(),
					'field/background'
				);

				echo '</div>';
			}

			echo '</div>';

			//
			// Background Image
			if ( ! empty( $args['background_image'] ) ) {
				echo '<div class="adminify--background-image">';

				ADMINIFY::field(
					[
						'id'          => 'background-image',
						'type'        => 'media',
						'class'       => 'adminify-assign-field-background',
						'library'     => $args['background_image_library'],
						'preview'     => $args['background_image_preview'],
						'placeholder' => $args['background_image_placeholder'],
						'attributes'  => [ 'data-depend-id' => $this->field['id'] ],
					],
					$this->value['background-image'],
					$this->field_name(),
					'field/background'
				);

				echo '</div>';
			}

			$auto_class   = ( ! empty( $args['background_auto_attributes'] ) ) ? ' adminify--auto-attributes' : '';
			$hidden_class = ( ! empty( $args['background_auto_attributes'] ) && empty( $this->value['background-image']['url'] ) ) ? ' adminify--attributes-hidden' : '';

			echo '<div class="adminify--background-attributes' . esc_attr( $auto_class . $hidden_class ) . '">';

			//
			// Background Position
			if ( ! empty( $args['background_position'] ) ) {
				ADMINIFY::field(
					[
						'id'      => 'background-position',
						'type'    => 'select',
						'options' => [
							''              => esc_html__( 'Background Position', 'adminify' ),
							'left top'      => esc_html__( 'Left Top', 'adminify' ),
							'left center'   => esc_html__( 'Left Center', 'adminify' ),
							'left bottom'   => esc_html__( 'Left Bottom', 'adminify' ),
							'center top'    => esc_html__( 'Center Top', 'adminify' ),
							'center center' => esc_html__( 'Center Center', 'adminify' ),
							'center bottom' => esc_html__( 'Center Bottom', 'adminify' ),
							'right top'     => esc_html__( 'Right Top', 'adminify' ),
							'right center'  => esc_html__( 'Right Center', 'adminify' ),
							'right bottom'  => esc_html__( 'Right Bottom', 'adminify' ),
						],
					],
					$this->value['background-position'],
					$this->field_name(),
					'field/background'
				);
			}

			//
			// Background Repeat
			if ( ! empty( $args['background_repeat'] ) ) {
				ADMINIFY::field(
					[
						'id'      => 'background-repeat',
						'type'    => 'select',
						'options' => [
							''          => esc_html__( 'Background Repeat', 'adminify' ),
							'repeat'    => esc_html__( 'Repeat', 'adminify' ),
							'no-repeat' => esc_html__( 'No Repeat', 'adminify' ),
							'repeat-x'  => esc_html__( 'Repeat Horizontally', 'adminify' ),
							'repeat-y'  => esc_html__( 'Repeat Vertically', 'adminify' ),
						],
					],
					$this->value['background-repeat'],
					$this->field_name(),
					'field/background'
				);
			}

			//
			// Background Attachment
			if ( ! empty( $args['background_attachment'] ) ) {
				ADMINIFY::field(
					[
						'id'      => 'background-attachment',
						'type'    => 'select',
						'options' => [
							''       => esc_html__( 'Background Attachment', 'adminify' ),
							'scroll' => esc_html__( 'Scroll', 'adminify' ),
							'fixed'  => esc_html__( 'Fixed', 'adminify' ),
						],
					],
					$this->value['background-attachment'],
					$this->field_name(),
					'field/background'
				);
			}

			//
			// Background Size
			if ( ! empty( $args['background_size'] ) ) {
				ADMINIFY::field(
					[
						'id'      => 'background-size',
						'type'    => 'select',
						'options' => [
							''        => esc_html__( 'Background Size', 'adminify' ),
							'cover'   => esc_html__( 'Cover', 'adminify' ),
							'contain' => esc_html__( 'Contain', 'adminify' ),
							'auto'    => esc_html__( 'Auto', 'adminify' ),
						],
					],
					$this->value['background-size'],
					$this->field_name(),
					'field/background'
				);
			}

			//
			// Background Origin
			if ( ! empty( $args['background_origin'] ) ) {
				ADMINIFY::field(
					[
						'id'      => 'background-origin',
						'type'    => 'select',
						'options' => [
							''            => esc_html__( 'Background Origin', 'adminify' ),
							'padding-box' => esc_html__( 'Padding Box', 'adminify' ),
							'border-box'  => esc_html__( 'Border Box', 'adminify' ),
							'content-box' => esc_html__( 'Content Box', 'adminify' ),
						],
					],
					$this->value['background-origin'],
					$this->field_name(),
					'field/background'
				);
			}

			//
			// Background Clip
			if ( ! empty( $args['background_clip'] ) ) {
				ADMINIFY::field(
					[
						'id'      => 'background-clip',
						'type'    => 'select',
						'options' => [
							''            => esc_html__( 'Background Clip', 'adminify' ),
							'border-box'  => esc_html__( 'Border Box', 'adminify' ),
							'padding-box' => esc_html__( 'Padding Box', 'adminify' ),
							'content-box' => esc_html__( 'Content Box', 'adminify' ),
						],
					],
					$this->value['background-clip'],
					$this->field_name(),
					'field/background'
				);
			}

			//
			// Background Blend Mode
			if ( ! empty( $args['background_blend_mode'] ) ) {
				ADMINIFY::field(
					[
						'id'      => 'background-blend-mode',
						'type'    => 'select',
						'options' => [
							''            => esc_html__( 'Background Blend Mode', 'adminify' ),
							'normal'      => esc_html__( 'Normal', 'adminify' ),
							'multiply'    => esc_html__( 'Multiply', 'adminify' ),
							'screen'      => esc_html__( 'Screen', 'adminify' ),
							'overlay'     => esc_html__( 'Overlay', 'adminify' ),
							'darken'      => esc_html__( 'Darken', 'adminify' ),
							'lighten'     => esc_html__( 'Lighten', 'adminify' ),
							'color-dodge' => esc_html__( 'Color Dodge', 'adminify' ),
							'saturation'  => esc_html__( 'Saturation', 'adminify' ),
							'color'       => esc_html__( 'Color', 'adminify' ),
							'luminosity'  => esc_html__( 'Luminosity', 'adminify' ),
						],
					],
					$this->value['background-blend-mode'],
					$this->field_name(),
					'field/background'
				);
			}

			echo '</div>';

			echo wp_kses_post( $this->field_after() );
		}

		public function output() {
			$output    = '';
			$bg_image  = [];
			$important = ( ! empty( $this->field['output_important'] ) ) ? '!important' : '';
			$element   = ( is_array( $this->field['output'] ) ) ? join( ',', $this->field['output'] ) : $this->field['output'];

			// Background image and gradient
			$background_color        = ( ! empty( $this->value['background-color'] ) ) ? $this->value['background-color'] : '';
			$background_gd_color     = ( ! empty( $this->value['background-gradient-color'] ) ) ? $this->value['background-gradient-color'] : '';
			$background_gd_direction = ( ! empty( $this->value['background-gradient-direction'] ) ) ? $this->value['background-gradient-direction'] : '';
			$background_image        = ( ! empty( $this->value['background-image']['url'] ) ) ? $this->value['background-image']['url'] : '';

			if ( $background_color && $background_gd_color ) {
				$gd_direction = ( $background_gd_direction ) ? $background_gd_direction . ',' : '';
				$bg_image[]   = 'linear-gradient(' . $gd_direction . $background_color . ',' . $background_gd_color . ')';
				unset( $this->value['background-color'] );
			}

			if ( $background_image ) {
				$bg_image[] = 'url(' . $background_image . ')';
			}

			if ( ! empty( $bg_image ) ) {
				$output .= 'background-image:' . implode( ',', $bg_image ) . $important . ';';
			}

			// Common background properties
			$properties = [ 'color', 'position', 'repeat', 'attachment', 'size', 'origin', 'clip', 'blend-mode' ];

			foreach ( $properties as $property ) {
				$property = 'background-' . $property;
				if ( ! empty( $this->value[ $property ] ) ) {
					$output .= $property . ':' . $this->value[ $property ] . $important . ';';
				}
			}

			if ( $output ) {
				$output = $element . '{' . $output . '}';
			}

			$this->parent->output_css .= $output;

			return $output;
		}

	}
}

```
