/
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\Single; use ElementorPro\Modules\ThemeBuilder\Module; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } // Define Loop as a template item class Livemesh_Item extends Single { public static function get_properties() { $properties = parent::get_properties(); $properties['condition_type'] = 'singular'; $properties['location'] = 'livemesh_item'; $properties['support_kit'] = true; $properties['support_site_editor'] = true; return $properties; } public function get_name() { return 'livemesh_item'; } protected static function get_site_editor_thumbnail_url() { return LAE_PLUGIN_URL . 'assets/images/livemesh-item.svg'; } protected static function get_site_editor_icon() { return 'eicon-archive'; } public static function get_title() { return __('Livemesh Item', 'livemesh-el-addons'); } public static function get_preview_as_options() { $post_types = self::get_public_post_types(); $post_types['attachment'] = get_post_type_object('attachment')->label; $post_types_options = []; foreach ($post_types as $post_type => $label) { $post_types_options['single/' . $post_type] = get_post_type_object($post_type)->labels->singular_name; } return [ 'single' => [ 'label' => __('Single', 'elementor-pro'), 'options' => $post_types_options, ], 'page/404' => __('404', 'elementor-pro'), ]; } public static function get_public_post_types() { $post_types_options = []; $args = array( 'public' => true, ); $post_types = get_post_types($args, 'objects'); foreach ($post_types as $post_type) { if ('elementor_library' != $post_type->name) $post_types_options[$post_type->name] = $post_type->label; } return $post_types_options; } }