File "attributes.php"

Full Path: /home/aiclgcwq/photonindustriespvt.com/wp-content/themes/woodmart/inc/integrations/gutenberg/src/layouts/sp-reviews/attributes.php
File size: 806 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

use XTS\Gutenberg\Block_Attributes;

if ( ! function_exists( 'wd_get_single_product_block_reviews_attrs' ) ) {
	function wd_get_single_product_block_reviews_attrs() {
		$attr = new Block_Attributes();

		$attr->add_attr(
			array(
				'layout'               => array(
					'type'    => 'string',
					'default' => 'one-column',
				),
				'reviewsGap'           => array(
					'type'       => 'number',
					'responsive' => true,
				),
				'reviewsColumns'       => array(
					'type'    => 'number',
					'default' => 1,
				),
				'reviewsColumnsTablet' => array(
					'type'    => 'number',
					'default' => 1,
				),
				'reviewsColumnsMobile' => array(
					'type'    => 'number',
					'default' => 1,
				),
			)
		);

		wd_get_advanced_tab_attrs( $attr );

		return $attr->get_attr();
	}
}