/
var
/
www
/
barefootlaw.org
/
wp-content
/
plugins
/
addons-for-elementor
/
includes
/
theme-builder
/
documents
/
Upload File
HOME
<?php namespace LivemeshAddons\ThemeBuilder; use ElementorPro\Modules\ThemeBuilder\Documents\Theme_Section_Document; if (!defined('ABSPATH')) { exit; // Exit if accessed directly } class Livemesh_Grid extends Theme_Section_Document { public static function get_properties() { $properties = parent::get_properties(); $properties['condition_type'] = ''; $properties['location'] = 'livemesh_grid'; $properties['support_kit'] = true; $properties['support_site_editor'] = true; return $properties; } protected static function get_site_editor_type() { return 'livemesh_grid'; } protected static function get_site_editor_thumbnail_url() { return LAE_PLUGIN_URL . 'assets/images/livemesh-grid.svg'; } protected static function get_site_editor_icon() { return 'eicon-archive'; } public function get_name() { return 'livemesh_grid'; } public static function get_title() { return __('Livemesh Grid', 'livemesh-el-addons'); } /* The category for the loop item widget */ protected static function get_editor_panel_categories() { $categories = [ 'livemesh-grid' => [ 'title' => __('Livemesh Grid', 'livemesh-el-addons'), ], ]; return $categories + parent::get_editor_panel_categories(); } }