| Server IP : 195.130.67.5 / Your IP : 216.73.217.127 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/prosvasi/wp-content/plugins/wp-statistics/src/Abstracts/ |
Upload File : |
<?php
namespace WP_Statistics\Abstracts;
use WP_STATISTICS\Option;
use WP_Statistics\Traits\MigrationAccess;
use WP_STATISTICS\User;
/**
* Abstract base class for managing migration-related operations.
*
* This abstract class centralizes common functionality needed by migration
* managers, such as security checks and context validation.
*/
abstract class BaseMigrationManager
{
use MigrationAccess;
/**
* Ensures the current user has permission to run migration-related operations.
*
* If the user lacks the required capability defined by the plugin option
* `manage_capability` (defaulting to `manage_options`), execution will halt with
* a 403 response.
*
* @return void
*/
protected function verifyMigrationPermission()
{
if (User::checkUserCapability(Option::get('manage_capability', 'manage_options'))) {
return;
}
wp_die(
__('You do not have sufficient permissions to run the ajax migration process.', 'wp-statistics'),
__('Permission Denied', 'wp-statistics'),
[
'response' => 403
]
);
}
}