| Server IP : 93.127.179.156 / Your IP :
216.73.216.24 [
Web Server : LiteSpeed System : Linux nl-srv-web1124.main-hosting.eu 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64 User : u964240598 ( 964240598) PHP Version : 8.4.19 Disable Function : system, exec, shell_exec, passthru, mysql_list_dbs, ini_alter, dl, symlink, link, chgrp, leak, popen, apache_child_terminate, virtual, mb_send_mail Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/u964240598/public_html/wp-content/plugins/h5p/ |
Upload File : |
<?php
/**
* H5P Plugin.
*
* Eases the creation and insertion of rich interactive content
* into you blog. Find content libraries at http://h5p.org
*
* @package H5P
* @author Joubel <contact@joubel.com>
* @license MIT
* @link http://joubel.com
* @copyright 2014 Joubel
*
* @wordpress-plugin
* Plugin Name: H5P
* Plugin URI: http://h5p.org/wordpress
* Description: Allows you to upload, create, share and use rich interactive content on your WordPress site.
* Version: 1.17.8
* Author: Joubel
* Author URI: http://joubel.com
* Text Domain: h5p
* License: MIT
* License URI: http://opensource.org/licenses/MIT
* Domain Path: /languages
*/
// If this file is called directly, abort.
if (!defined('WPINC')) {
die;
}
require_once plugin_dir_path(__FILE__) . 'autoloader.php';
// Public-Facing Functionality
register_activation_hook(__FILE__, array('H5P_Plugin', 'activate'));
register_deactivation_hook( __FILE__, array('H5P_Plugin', 'deactivate'));
add_action('plugins_loaded', array('H5P_Plugin', 'get_instance'));
// Dashboard and Administrative Functionality
if (is_admin()) {
add_action('plugins_loaded', array('H5P_Plugin_Admin', 'get_instance'));
}
Anon7 - 2022
AnonSec Team
