| 1 |
<?php |
| 2 |
|
| 3 |
namespace IAWP\AJAX; |
| 4 |
|
| 5 |
use IAWP\Capability_Manager; |
| 6 |
/** @internal */ |
| 7 |
class Confirm_Cache_Cleared extends \IAWP\AJAX\AJAX |
| 8 |
{ |
| 9 |
protected function action_name() : string |
| 10 |
{ |
| 11 |
return 'iawp_confirm_cache_cleared'; |
| 12 |
} |
| 13 |
protected function action_callback() : void |
| 14 |
{ |
| 15 |
if (!Capability_Manager::can_edit()) { |
| 16 |
return; |
| 17 |
} |
| 18 |
\update_option('iawp_need_clear_cache', \false); |
| 19 |
} |
| 20 |
} |
| 21 |
|