uawdijnntqw1x1x1
IP : 3.15.7.20
Hostname : c17w.hoster.ru
Kernel : Linux c17w.hoster.ru 3.10.0 #1 SMP Tue Jan 25 12:49:12 MSK 2022 x86_64
Disable Function : dl,shell_exec,exec,system,passthru,popen,proc_open,proc_nice,proc_get_status,proc_close,proc_terminate,posix_mkfifo,chown,chgrp,show_source,opcache_reset,opcache_get_configuration,opcache_get_status
OS : Linux
PATH:
/
home
/
srv221441
/
kso-don.ru
/
wp-content
/
plugins
/
presto-player
/
inc
/
Services
/
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 ); } }
/home/srv221441/kso-don.ru/wp-content/plugins/presto-player/inc/Services/RewriteRulesManager.php