File "attributes.php"

Full Path: /home/aiclgcwq/photonindustriespvt.com/wp-content/themes/woodmart/inc/integrations/gutenberg/src/components/controls/position/attributes.php
File size: 987 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

if ( ! function_exists( 'wd_get_position_control_attrs' ) ) {
	function wd_get_position_control_attrs( $attr, $attrs_prefix = '' ) {
		$attr->add_attr(
			array(
				'type'   => array(
					'type'       => 'string',
					'default'    => '',
					'responsive' => true,
				),
				'zIndex' => array(
					'type'       => 'string',
					'responsive' => true,
				),
				'top'    => array(
					'type'       => 'string',
					'responsive' => true,
				),
				'right'  => array(
					'type'       => 'string',
					'responsive' => true,
				),
				'bottom' => array(
					'type'       => 'string',
					'responsive' => true,
				),
				'left'   => array(
					'type'       => 'string',
					'responsive' => true,
				),
				'lock'   => array(
					'type'       => 'boolean',
					'default'    => false,
					'responsive' => true,
				),
				'units'  => array(
					'type'       => 'string',
					'default'    => 'px',
					'responsive' => true,
				),
			),
			$attrs_prefix
		);
	}
}