<?php
/**
* Element Definition: Block Grid
*/
class CSE_Block_Grid extends BaseClassicElement {
public function ui() {
return array(
'title' => __( 'Block Grid', 'cornerstone' ),
);
}
public function flags() {
return array(
'dynamic_child' => true
);
}
public function register_shortcode() {
return false;
}
public function update_build_shortcode_atts( $atts ) {
return $atts;
}
}