PATH:
home
/
letacommog
/
morandas1
/
wp-content
/
plugins
/
envato-elements
/
inc
<?php /** * Envato Elements: * * Inspired by Media Sync plugin from dtbaker * * @package Envato/Envato_Elements * @since 1.0.0 */ namespace Envato_Elements; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * Deep photo integration with WP media library * * @since 1.0.0 */ class Deep_Photos extends Base { /** * Deep constructor. */ public function __construct() { parent::__construct(); add_action( 'elementor/editor/before_enqueue_scripts', [ $this, 'load_custom_wp_admin_scripts' ] ); add_action( 'elementor/preview/enqueue_styles', [ $this, 'load_custom_wp_admin_scripts' ] ); add_action( 'admin_enqueue_scripts', [ $this, 'load_custom_wp_admin_scripts' ], 100 ); } public function load_custom_wp_admin_scripts(){ if ( License::get_instance()->is_activated() ) { wp_enqueue_script( 'elements-deep', ENVATO_ELEMENTS_URI . 'assets/js/elements-deep.min.js', [ 'jquery' ], ENVATO_ELEMENTS_VER, true ); wp_enqueue_style( 'elements-deep', ENVATO_ELEMENTS_URI . 'assets/css/elements-deep.min.css', [], ENVATO_ELEMENTS_VER ); Plugin::get_instance()->admin_page_assets_react(); } } }
[+]
..
[-] class-notices.php
[edit]
[-] class-deep-photos.php
[edit]
[-] class-section.php
[edit]
[-] class-template.php
[edit]
[-] class-rest.php
[edit]
[-] class-statistics.php
[edit]
[-] class-collection-elementor-blocks.php
[edit]
[-] class-license.php
[edit]
[-] class-notifications.php
[edit]
[-] class-import.php
[edit]
[-] bootstrap.php
[edit]
[-] class-category.php
[edit]
[-] class-collection-photos.php
[edit]
[-] class-collection.php
[edit]
[-] class-elements-api.php
[edit]
[-] class-linker.php
[edit]
[-] class-required-plugin.php
[edit]
[-] class-collection-elementor.php
[edit]
[-] class-plugin.php
[edit]
[-] class-elementor.php
[edit]
[-] class-cpt.php
[edit]
[-] class-api.php
[edit]
[-] class-options.php
[edit]
[-] class-collection-beaver-builder.php
[edit]
[-] class-base.php
[edit]
[-] class-insert.php
[edit]
[-] class-cpt-kits.php
[edit]