HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux aritmodecarnaval.es 5.15.0-79-generic #86-Ubuntu SMP Mon Jul 10 16:07:21 UTC 2023 x86_64
User: www-data (33)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /home/www/aritmodecarnaval/wp-content/plugins/youtube-embed/youtube-embed.php
<?php
/**
 * Embeds for YouTube
 *
 * @package           youtube-embed
 * @author            Embeds for YouTube Team
 * @license           GPL-2.0-or-later
 *
 * Plugin Name:       Embeds for YouTube
 * Plugin URI:        https://wordpress.org/plugins/youtube-embed/
 * Description:       🎥 An incredibly fast, simple, yet powerful, method of embedding YouTube videos into your WordPress site.
 * Version:           5.4
 * Requires at least: 4.6
 * Requires PHP:      7.4
 * Author:            Embeds for YouTube Team
 * Author URI:        https://wordpress.org/support/users/squared/
 * Text Domain:       youtube-embed
 * License:           GPL v2 or later
 * License URI:       http://www.gnu.org/licenses/gpl-2.0.txt
 *
 * This program is free software; you can redistribute it and/or modify it under the terms of the GNU
 * General Public License version 2, as published by the Free Software Foundation. You may NOT assume
 * that you can use any other version of the GPL.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
 * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 */

define( 'YOUTUBE_EMBED_VERSION', '5.4' );

$functions_dir = plugin_dir_path( __FILE__ ) . 'includes/';

// Include all the various functions.

require_once $functions_dir . 'shared-functions.php';       // Shared routines.

require_once $functions_dir . 'add-scripts.php';            // Add various scripts.

require_once $functions_dir . 'generate-embed-code.php';    // Generate embed code.

require_once $functions_dir . 'generate-other-code.php';    // Generate download & short URLs & thumbnails.

require_once $functions_dir . 'generate-widgets.php';       // Generate widgets.

require_once $functions_dir . 'api-access.php';             // Fetch video data from YouTube API.

require_once $functions_dir . 'caching.php';                // Data caching functions.

require_once $functions_dir . 'shortcodes.php';             // Shortcodes.

require_once $functions_dir . 'admin-config.php';           // Administration configuration.