File: /opt/wpsites/datainsightnow.com/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(),
);
}
}