Server IP : 192.64.112.168 / Your IP : 3.137.198.0 Web Server : Apache System : Linux nc-ph-2300-85.bluforrest.com 4.18.0-513.9.1.el8_9.x86_64 #1 SMP Sat Dec 2 05:23:44 EST 2023 x86_64 User : expressoneac ( 1128) PHP Version : 8.0.30 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/expressoneac/www/wp-content/plugins/envato-elements/inc/backend/ |
Upload File : |
<?php /** * Envato Elements: * * Elements Welcome Page UI. * * @package Envato/Envato_Elements * @since 2.0.0 */ namespace Envato_Elements\Backend; use Envato_Elements\Utils\Base; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * Handles the photos embed feature. * * @since 2.0.0 */ class Photos_Embed extends Base { /** * Deep constructor. */ public function __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 ); add_action( 'delete_attachment', array( $this, 'delete_attachment' ) ); } public function delete_attachment( $post_to_be_deleted ) { $post = get_post( $post_to_be_deleted ); if ( $post && 'attachment' === $post->post_type ) { // We're deleting an attachment, check if it's an Envato Elements photo. $recorded_download_event_id = get_post_meta( $post->ID, 'envato_elements_download_event', true ); if ( $recorded_download_event_id ) { Downloaded_Items::get_instance()->remove_download_event( $recorded_download_event_id ); } } } public function load_custom_wp_admin_scripts() { Welcome::get_instance()->admin_page_assets(); wp_enqueue_script( 'elements-deep', ENVATO_ELEMENTS_URI . 'assets/elements_deep.js', [ 'envato-elements-admin', 'jquery' ], ENVATO_ELEMENTS_VER, true ); wp_enqueue_style( 'elements-deep', ENVATO_ELEMENTS_URI . 'assets/elements_deep.css', [], ENVATO_ELEMENTS_VER ); } }