Your IP : 3.16.15.215


Current Path : /home/church/public_html/IgotdaJuice501.org/wp-content/plugins/essential-blocks/blocks/
Upload File :
Current File : /home/church/public_html/IgotdaJuice501.org/wp-content/plugins/essential-blocks/blocks/Row.php

<?php
namespace EssentialBlocks\blocks;

use EssentialBlocks\Core\Block;

class Row extends Block {
	protected $frontend_styles = array( 'essential-blocks-frontend-style' );
	/**
	 * Unique name of the block.
	 *
	 * @return string
	 */
	public function get_name() {
		return 'row';
	}

	/**
	 * Initialize the InnerBlocks for Accordion
	 *
	 * @return array<Block>
	 */
	public function inner_blocks() {
		return array(
			Column::get_instance(),
		);
	}
}