You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
377 B
13 lines
377 B
<?php
|
|
defined('WP_UNINSTALL_PLUGIN') || exit;
|
|
|
|
if (file_exists(__DIR__ . '/vendor/autoload.php')) {
|
|
require __DIR__ . '/vendor/autoload.php';
|
|
}
|
|
|
|
if (!class_exists(\Cdek\Uninstaller::class)) {
|
|
trigger_error('CDEKDelivery not fully installed! Please install with Composer or download full release archive.',
|
|
E_USER_ERROR);
|
|
}
|
|
|
|
(new \Cdek\Uninstaller)();
|
|
|