<?php
/**
* Elementor Compatibility Class
* Date: 23/09/2019
*/
if ( ! class_exists( 'FooGallery_Elementor_Compatibility' ) ) {
class FooGallery_Elementor_Compatibility {
function __construct() {
add_action( 'elementor/editor/after_save', array( $this, 'save_elementor_data' ), 10, 2 );
add_action( 'plugins_loaded', array( $this, 'init' ) );
add_action( 'elementor/preview/enqueue_scripts', array( $this, 'enqueue_assets' ) );
add_action( 'wp_ajax_foogallery_elementor_refresh_galleries', array( $this, 'ajax_refresh_galleries' ) );
// Add attribute to foogallery image links to prevent Elementor from trasitioning to the image.
if ( defined( 'ELEMENTOR_VERSION' ) ) {
add_filter( 'foogallery_attachment_html_link_attributes', array( $this, 'add_elementor_prevent_transition' ), 10, 3 );
}
}
function add_elementor_prevent_transition( $attributes, $args, $foogallery_attachment ) {
$attributes['data-e-disable-page-transition'] = 'true';
return $attributes;
}
function init() {
if ( did_action( 'elementor/loaded' ) ) {
add_action( 'elementor/widgets/widgets_registered', array( $this, 'init_widget' ) );
}
}
public function init_widget() {
// Include Widget files
require_once( FOOGALLERY_PATH . 'includes/compatibility/elementor/class-elementor-foogallery-widget.php' );
// Register widget
\Elementor\Plugin::instance()->widgets_manager->register( new Elementor_FooGallery_Widget() );
}
public function enqueue_assets() {
foogallery_enqueue_core_gallery_template_script();
foogallery_enqueue_core_gallery_template_style();
wp_enqueue_script( 'foogallery-elementor', FOOGALLERY_URL . 'js/admin-foogallery-elementor.js', array('jquery'), FOOGALLERY_VERSION );
// Pass admin URLs to JS.
wp_localize_script( 'foogallery-elementor', 'FooGalleryElementor', [
'editUrlBase' => admin_url( 'post.php?action=edit&post=' ),
'newUrl' => foogallery_admin_add_gallery_url(),
'ajaxUrl' => admin_url( 'admin-ajax.php' ),
'refreshNonce'=> wp_create_nonce( 'foogallery-elementor-refresh' ),
'refreshError'=> esc_html__( 'Unable to refresh galleries. Please reload the page.', 'foogallery' ),
] );
}
public function ajax_refresh_galleries() {
check_ajax_referer( 'foogallery-elementor-refresh', 'nonce' );
if ( ! current_user_can( 'edit_posts' ) ) {
wp_send_json_error( esc_html__( 'You are not allowed to refresh galleries.', 'foogallery' ), 403 );
}
if ( ! class_exists( 'Elementor_FooGallery_Widget' ) ) {
require_once FOOGALLERY_PATH . 'includes/compatibility/elementor/class-elementor-foogallery-widget.php';
}
$options = Elementor_FooGallery_Widget::get_gallery_options();
wp_send_json_success([
'options' => $options,
]);
}
function save_elementor_data( $post_id, $editor_data) {
//loop through the $editor_data and find any FooGallery widgets or shortcodes
$gallery_ids = $this->find_galleries_recursive( $editor_data );
if ( is_array( $gallery_ids ) && count( $gallery_ids ) > 0 ) {
foreach ( $gallery_ids as $gallery_id) {
//if the content contains the foogallery shortcode then add a custom field
add_post_meta( $post_id, FOOGALLERY_META_POST_USAGE, $gallery_id, false );
do_action( 'foogallery_attach_gallery_to_post', $post_id, $gallery_id );
}
}
}
function find_galleries_recursive( $array ) {
$found = array();
if ( is_array( $array ) ) {
foreach ( $array as $element ) {
if (array_key_exists('widgetType', $element) && $element['widgetType'] === 'shortcode') {
$shortcode = $element['settings']['shortcode'];
$gallery_ids = foogallery_extract_gallery_shortcodes($shortcode);
if (count($gallery_ids) > 0) {
$found = array_merge($found, array_keys($gallery_ids));
}
} else if ( array_key_exists( 'widgetType', $element) && $element['widgetType'] === 'foogallery' ) {
$found[] = intval( $element['settings']['gallery_id'] );
} else if ( array_key_exists( 'elements', $element ) && count( $element['elements'] ) > 0 ) {
$found = array_merge($found, $this->find_galleries_recursive( $element['elements'] ) );
}
}
}
return $found;
}
}
}