oont-contents/plugins/elementor-pro/modules/floating-buttons/documents/floating-buttons.php
2025-02-08 15:10:23 +01:00

199 lines
5.6 KiB
PHP

<?php
namespace ElementorPro\Modules\FloatingButtons\Documents;
use Elementor\Modules\Library\Traits\Library as Library_Trait;
use ElementorPro\Modules\FloatingButtons\Module as Floating_Buttons_Module;
use Elementor\Modules\PageTemplates\Module as Page_Templates_Module;
use Elementor\TemplateLibrary\Source_Local;
use ElementorPro\Modules\ThemeBuilder\Documents\Archive;
use ElementorPro\Modules\ThemeBuilder\Documents\Single;
use ElementorPro\Modules\ThemeBuilder\Documents\Theme_Document;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
class Floating_Buttons extends Theme_Document {
const FLOATING_ELEMENTS_TYPE_META_KEY = '_elementor_floating_elements_type';
use Library_Trait;
public static function get_floating_element_type( $post_id ) {
$meta = get_post_meta( $post_id, static::FLOATING_ELEMENTS_TYPE_META_KEY, true );
return $meta ? $meta : 'floating-buttons';
}
public static function get_properties() {
$properties = parent::get_properties();
$properties['cpt'] = [ Floating_Buttons_Module::CPT_FLOATING_BUTTONS ];
$properties['support_kit'] = true;
$properties['support_site_editor'] = false;
$properties['show_navigator'] = false;
$properties['allow_adding_widgets'] = false;
$properties['support_page_layout'] = false;
$properties['support_conditions'] = true;
$properties['condition_type'] = 'general';
$properties['library_close_title'] = esc_html__( 'Go To Dashboard', 'elementor-pro' );
$properties['publish_button_title'] = esc_html__( 'After publishing this widget, you will be able to set it as visible on the entire site in the Admin Table.', 'elementor-pro' );
$properties['allow_closing_remote_library'] = false;
$properties['location'] = 'floating_buttons';
return $properties;
}
public function get_edit_url() {
return add_query_arg(
[
'post' => $this->get_main_id(),
'action' => 'elementor',
'floating_element' => get_post_meta(
$this->get_main_id(),
static::FLOATING_ELEMENTS_TYPE_META_KEY,
true
),
],
admin_url( 'post.php' )
);
}
public function print_content() {
$plugin = \Elementor\Plugin::$instance;
if ( $plugin->preview->is_preview_mode( $this->get_main_id() ) ) {
// PHPCS - the method builder_wrapper is safe.
echo $plugin->preview->builder_wrapper( '' ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
} else {
// PHPCS - the method get_content is safe.
echo $this->get_content(); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}
}
public function get_location() {
return self::get_property( 'location' );
}
public static function get_type() {
return Floating_Buttons_Module::FLOATING_BUTTONS_DOCUMENT_TYPE;
}
public static function register_post_fields_control( $document ) {}
public static function register_hide_title_control( $document ) {}
public static function get_preview_as_default() {
return '';
}
public static function get_preview_as_options() {
return array_merge(
[
'' => esc_html__( 'Select...', 'elementor-pro' ),
],
Archive::get_preview_as_options(),
Single::get_preview_as_options()
);
}
public function get_name() {
return Floating_Buttons_Module::FLOATING_BUTTONS_DOCUMENT_TYPE;
}
public function filter_admin_row_actions( $actions ) {
unset( $actions['edit'] );
unset( $actions['inline hide-if-no-js'] );
$built_with_elementor = $this->add_built_with_elementor( [] );
if ( isset( $actions['trash'] ) ) {
$delete = $actions['trash'];
unset( $actions['trash'] );
$actions['trash'] = $delete;
}
return $built_with_elementor + $actions;
}
public function add_built_with_elementor( $actions ) {
if ( $this->is_built_with_elementor() && $this->is_editable_by_current_user() ) {
$edit_url = $this->get_edit_url();
if ( ! $this->get_post()->post_content ) {
$edit_url .= '#library';
}
$actions['edit_with_elementor'] = sprintf(
'<a href="%1$s">%2$s</a>',
$edit_url,
esc_html__( 'Edit with Elementor', 'elementor-pro' )
);
}
return $actions;
}
public static function get_title() {
return esc_html__( 'Floating Element', 'elementor-pro' );
}
public static function get_plural_title() {
return esc_html__( 'Floating Elements', 'elementor-pro' );
}
public static function get_create_url() {
return parent::get_create_url();
}
public function save( $data ) {
if ( empty( $data['settings']['template'] ) ) {
$data['settings']['template'] = Page_Templates_Module::TEMPLATE_CANVAS;
}
return parent::save( $data );
}
protected function register_controls() {
parent::register_controls();
$latest_posts = get_posts( [
'posts_per_page' => 1,
'post_type' => 'page',
] );
if ( ! empty( $latest_posts ) ) {
$this->update_control(
'preview_type',
[
'default' => 'single/page',
]
);
$this->update_control(
'preview_id',
[
'default' => $latest_posts[0]->ID,
]
);
}
}
public function admin_columns_content( $column_name ) {
if ( 'elementor_library_type' === $column_name ) {
$admin_filter_url = admin_url( Source_Local::ADMIN_MENU_SLUG . '&elementor_library_type=' . $this->get_name() );
$meta = static::get_floating_element_type( $this->get_main_id() );
printf( '<a href="%s">%s</a>', $admin_filter_url, Floating_Buttons_Module::get_floating_elements_types()[ $meta ] ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}
}
protected function get_remote_library_config() {
$config = [
'type' => 'floating_button',
'default_route' => 'templates/floating-buttons',
'autoImportSettings' => true,
];
return array_replace_recursive( parent::get_remote_library_config(), $config );
}
}