[ 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
/
Services
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 API
SET
[ DEL ]
📁 Blocks
SET
[ DEL ]
📁 comment-editor
SET
[ DEL ]
📄 AdminNotice.php
1,170 B
SET
[ EDIT ]
|
[ DEL ]
📄 AdminNotices.php
6,633 B
SET
[ EDIT ]
|
[ DEL ]
📄 AjaxActions.php
971 B
SET
[ EDIT ]
|
[ DEL ]
📄 Blocks.php
1,134 B
SET
[ EDIT ]
|
[ DEL ]
📄 Compatibility.php
3,181 B
SET
[ EDIT ]
|
[ DEL ]
📄 Menu.php
5,867 B
SET
[ EDIT ]
|
[ DEL ]
📄 Migrations.php
187 B
SET
[ EDIT ]
|
[ DEL ]
📄 NpsSurvey.php
2,269 B
SET
[ EDIT ]
|
[ DEL ]
📄 Player.php
1,958 B
SET
[ EDIT ]
|
[ DEL ]
📄 PreloadService.php
3,131 B
SET
[ EDIT ]
|
[ DEL ]
📄 ProCompatibility.php
1,566 B
SET
[ EDIT ]
|
[ DEL ]
📄 ReusableVideos.php
3,803 B
SET
[ EDIT ]
|
[ DEL ]
📄 RewriteRulesManager.php
2,085 B
SET
[ EDIT ]
|
[ DEL ]
📄 Scripts.php
15,853 B
SET
[ EDIT ]
|
[ DEL ]
📄 Settings.php
8,791 B
SET
[ EDIT ]
|
[ DEL ]
📄 Shortcodes.php
17,922 B
SET
[ EDIT ]
|
[ DEL ]
📄 Streamer.php
3,046 B
SET
[ EDIT ]
|
[ DEL ]
📄 Translation.php
6,157 B
SET
[ EDIT ]
|
[ DEL ]
📄 Usage.php
7,255 B
SET
[ EDIT ]
|
[ DEL ]
📄 VideoPostType.php
22,048 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: RewriteRulesManager.php
<?php namespace PrestoPlayer\Services; use PrestoPlayer\Plugin; /** * The RewriteRulesManager service. */ class RewriteRulesManager { /** * The option name for the stored version. * * @var string */ protected $option_name = 'presto_flush_rewrite_rules'; /** * Bootstraps the service. * * @return void */ public function bootstrap() { add_action( 'admin_init', array( $this, 'flushRewriteRulesOnVersionChange' ) ); } /** * Retrieves the stored version from the WordPress options. * * @return string The stored version. */ public function getStoredVersion() { return get_option( $this->option_name, '0.0.0' ); } /** * Retrieves the current plugin version. * * @return string The current plugin version. */ public function getCurrentPluginVersion() { return Plugin::version(); } /** * Flushes the rewrite rules if the plugin version has changed. * * @return bool|void Returns false if the versions are the same, otherwise void. */ public function flushRewriteRulesOnVersionChange() { $current_version = $this->getCurrentPluginVersion(); $stored_version = $this->getStoredVersion(); if ( ! $this->isVersionDifferent( $current_version, $stored_version ) ) { return false; } return $this->flushRewriteRulesAndUpdateVersion( $current_version ); } /** * Checks if the current plugin version is different from the stored version. * * @param string $current_version The current plugin version. * @param string $stored_version The stored plugin version. * * @return bool True if the versions are different, false otherwise. */ public function isVersionDifferent( $current_version, $stored_version ) { return version_compare( $current_version, $stored_version, '!=' ); } /** * Flushes the rewrite rules and updates the stored version. * * @param string $new_version The new plugin version. * * @return void */ public function flushRewriteRulesAndUpdateVersion( $new_version ) { flush_rewrite_rules(); return update_option( $this->option_name, $new_version, false ); } }