| Server IP : 167.99.224.18 / Your IP : 216.73.216.136 Web Server : Apache/2.4.41 (Ubuntu) System : Linux wordpress-ubuntu-s-1vcpu-1gb-nyc1-01 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.0.25 Disable Function : 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, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/wp-content/plugins/podlove-web-player/ |
Upload File : |
<?php
/**
* The plugin bootstrap file
*
* This file is read by WordPress to generate the plugin information in the plugin
* admin area. This file also includes all of the dependencies used by the plugin,
* registers the activation and deactivation functions, and defines a function
* that starts the plugin.
*
* @link https://docs.podlove.org/podlove-web-player/
* @since 5.0.2
* @package Podlove_Web_Player
*
* @wordpress-plugin
* Plugin Name: Podlove Web Player
* Plugin URI: https://docs.podlove.org/podlove-web-player/
* Description: Audio First Podcast Web Player
* Version: 5.9.2
* Author: Podlove
* Author URI: http://podlove.org
* License: MIT
* License URI: https://opensource.org/licenses/MIT
* Text Domain: podlove-web-player
* Domain Path: /languages
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
define( 'PODLOVE_WEB_PLAYER_VERSION', '5.9.2' );
define( 'PODLOVE_WEB_PLAYER_PATH', plugins_url( '', __FILE__ ) );
/**
* The code that runs during plugin activation.
* This action is documented in includes/class-podlove-web-player-activator.php
*/
function activate_podlove_web_player($network) {
require_once plugin_dir_path( __FILE__ ) . 'includes/class-podlove-web-player-activator.php';
Podlove_Web_Player_Activator::activate('podlove-web-player', $network);
}
register_activation_hook( __FILE__, 'activate_podlove_web_player' );
/**
* The core plugin class that is used to define internationalization,
* admin-specific hooks, and public-facing site hooks.
*/
require plugin_dir_path( __FILE__ ) . 'includes/class-podlove-web-player.php';
/**
* Begins execution of the plugin.
*
* Since everything within the plugin is registered via hooks,
* then kicking off the plugin from this point in the file does
* not affect the page life cycle.
*
* @since 5.0.2
*/
function run_podlove_web_player() {
$plugin = new Podlove_Web_Player();
$plugin->run();
}
run_podlove_web_player();