File "block.php"

Full path: /home/dora/public_html/wp-content/themes/bricks/includes/elements/block.php
File size: 438 bytes
MIME-type: --
Charset: utf-8

<?php
namespace Bricks;

if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

// Container element not loaded
if ( ! class_exists( 'Element_Container' ) ) {
	return;
}

class Element_Block extends Element_Container {
	public $category = 'layout';
	public $name     = 'block';
	public $icon     = 'ti-layout-width-full';
	public $nestable = true;

	public function get_label() {
		return esc_html__( 'Block', 'bricks' );
	}
}