[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
presto-player
/
inc
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 Blocks
SET
[ DEL ]
📁 Contracts
SET
[ DEL ]
📁 Database
SET
[ DEL ]
📁 Integrations
SET
[ DEL ]
📁 Libraries
SET
[ DEL ]
📁 Models
SET
[ DEL ]
📁 Seeds
SET
[ DEL ]
📁 Services
SET
[ DEL ]
📁 Support
SET
[ DEL ]
📁 config
SET
[ DEL ]
📁 lib
SET
[ DEL ]
📄 Activator.php
511 B
SET
[ EDIT ]
|
[ DEL ]
📄 Attachment.php
7,513 B
SET
[ EDIT ]
|
[ DEL ]
📄 Controller.php
850 B
SET
[ EDIT ]
|
[ DEL ]
📄 Core.php
1,179 B
SET
[ EDIT ]
|
[ DEL ]
📄 Deactivator.php
3,065 B
SET
[ EDIT ]
|
[ DEL ]
📄 Factory.php
2,960 B
SET
[ EDIT ]
|
[ DEL ]
📄 Files.php
6,912 B
SET
[ EDIT ]
|
[ DEL ]
📄 Playlist.php
1,935 B
SET
[ EDIT ]
|
[ DEL ]
📄 Plugin.php
2,415 B
SET
[ EDIT ]
|
[ DEL ]
📄 Requirements.php
2,030 B
SET
[ EDIT ]
|
[ DEL ]
📄 support.php
155 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: Core.php
<?php namespace PrestoPlayer; class Core { /** * The singleton instance. * * @var Core */ private static $instance; /** * Retrieves (and if necessary creates) the API instance. Should not be called outside of plugin set-up. * * @internal * * @since 1.0.0 * * @param Core $instance Only used for plugin initialization. Don't ever pass a value in user code. * * @return void * * @throws \BadMethodCallException Thrown when Avatar_Privacy_Core::set_instance after plugin initialization. */ public static function set_instance( Core $instance ) { if ( null === self::$instance ) { self::$instance = $instance; } else { // throw new \BadMethodCallException(__METHOD__ . ' called more than once.'); } } /** * Retrieves the plugin instance. * * @since 1.0.0 * * @throws \BadMethodCallException Thrown when Avatar_Privacy_Core::get_instance is called before plugin initialization. * * @return Core */ public static function get_instance() { if ( null === self::$instance ) { throw new \BadMethodCallException( __METHOD__ . ' called without prior plugin intialization.' ); } return self::$instance; } }