[ 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
/
Tutor
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 Tutor.php
871 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: Tutor.php
<?php namespace PrestoPlayer\Integrations\Tutor; class Tutor { public function register() { add_filter( 'tutor_course/single/video', array( $this, 'renderVideo' ) ); add_filter( 'tutor_lesson/single/video', array( $this, 'renderVideo' ) ); } public function renderVideo( $output ) { if ( ! strpos( $output, '[presto_player' ) ) { return $output; } // read all image tags into an array preg_match_all( '/<source[^>]+>/i', $output, $source ); if ( empty( $source[0] ) ) { return $output; } preg_match( '/src="([^"]+)/i', $source[0][0], $src ); if ( empty( $src[1] ) ) { return $output; } // remove accidental url encoding and protocol. $source = str_replace( 'http://', '', $src[1] ); $source = str_replace( 'https://', '', $source ); $source = str_replace( '%20', ' ', $source ); return \do_shortcode( $source ); } }