AlkantarClanX12

Your IP : 18.118.28.217


Current Path : /home/thanudqk/128shen.com/wp-content/plugins/thegem-elements/inc/button-animation/
Upload File :
Current File : /home/thanudqk/128shen.com/wp-content/plugins/thegem-elements/inc/button-animation/index.php

<?php

if (!defined('ABSPATH')) exit;

class TheGemButtonAnimation {

    private static $instance = null;
    private $activeAnimations;

    const ANIMATION_SLIDE_UP = 'slide-up';
    const ANIMATION_SLIDE_DOWN = 'slide-down';
    const ANIMATION_SLIDE_LEFT = 'slide-left';
    const ANIMATION_SLIDE_RIGHT = 'slide-right';
    const ANIMATION_FADE_UP = 'fade-up';
    const ANIMATION_FADE_LEFT = 'fade-left';
    const ANIMATION_FADE_RIGHT = 'fade-right';
    const ANIMATION_FADE_DOWN = 'fade-down';
    const ANIMATION_FADE = 'fade';

    public static function instance() {
        if (static::$instance === null) {
            static::$instance = new static();
        }

        return self::$instance;
    }

    public static function getAnimationList() {
        return [
            static::ANIMATION_SLIDE_UP => __('Slide Up', 'thegem'),
            static::ANIMATION_SLIDE_DOWN => __('Slide Down', 'thegem'),
            static::ANIMATION_SLIDE_LEFT => __('Slide Left', 'thegem'),
            static::ANIMATION_SLIDE_RIGHT => __('Slide Right', 'thegem'),
            static::ANIMATION_FADE_UP => __('Fade Up', 'thegem'),
            static::ANIMATION_FADE_LEFT => __('Fade Left', 'thegem'),
            static::ANIMATION_FADE_RIGHT => __('Fade Right', 'thegem'),
            static::ANIMATION_FADE_DOWN => __('Fade Down', 'thegem'),
            static::ANIMATION_FADE => __('Fade', 'thegem')
        ];
    }

    public function init() {
        if (is_singular() && has_shortcode($content = get_the_content(null, false, get_the_id()), 'gem_button')) {
            if (preg_match_all('/effects_enabled_name=\"(.+?)\"/', $content, $animationMatch)) {
                $this->activeAnimations = $animationMatch[1] ?? [];

                if (!empty($this->activeAnimations)) {
                    $this->includeAssets();
                }
            }
        }
    }

    private function includeAssets() {
        wp_enqueue_style('thegem-button-animation', plugin_dir_url(__FILE__).'assets/css/main.css', []);

        if (is_user_logged_in()) {
            wp_enqueue_script('thegem-button-animation', plugin_dir_url(__FILE__).'assets/js/main.js');

            if (thegem_is_plugin_active('js_composer/js_composer.php')) {
                wp_enqueue_script('thegem-button-animation-vc', plugin_dir_url(__FILE__).'assets/js/vc.js');
            }
        }
    }

    public function includeInlineJs() {
        if (is_user_logged_in() || empty($this->activeAnimations)) return;

        static $isIncludeInlineJs;

        if (!$isIncludeInlineJs) {
            if ($js = file_get_contents(plugin_dir_path(__FILE__).'assets/js/main.js')) {
                $js = preg_replace('/(\s{2,})/', '', $js);
                $js = str_replace(["\r\n", "\r", "\n"], '',  $js);
                echo "<script type=\"text/javascript\">$js</script>";
            }

            $isIncludeInlineJs = true;
        }
    }

}