[ 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
/
Integrations
/
Divi
/
includes
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 modules
SET
[ DEL ]
📄 PrestoDiviExtension.php
1,035 B
SET
[ EDIT ]
|
[ DEL ]
📄 loader.php
335 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: PrestoDiviExtension.php
<?php class PrestoDiviExtension extends DiviExtension { /** * The gettext domain for the extension's translations. * * @since 1.0.0 * * @var string */ public $gettext_domain = 'presto-player'; /** * The extension's WP Plugin name. * * @since 1.0.0 * * @var string */ public $name = 'presto-player'; /** * The extension's version * * @since 1.0.0 * * @var string */ public $version = '1.0.0'; /** * PrestoDiviExtensions constructor. * * @param string $name * @param array $args */ public function __construct( $name = 'presto-player', $args = array() ) { $this->plugin_dir = plugin_dir_path( __FILE__ ); $this->plugin_dir_url = plugin_dir_url( $this->plugin_dir ); parent::__construct( $name, $args ); } /** * Enqueues minified, production javascript bundles. * * @since 3.1 */ protected function _enqueue_bundles() { } protected function _enqueue_backend_styles() { } public function wp_hook_enqueue_scripts() { } } new PrestoDiviExtension();