- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
32 lines
793 B
PHP
Executable File
32 lines
793 B
PHP
Executable File
<?php
|
|
/**
|
|
* File: Extension_Swarmify_AdminActions.php
|
|
*
|
|
* @package W3TC
|
|
*/
|
|
|
|
namespace W3TC;
|
|
|
|
/**
|
|
* Class Extension_Swarmify_AdminActions
|
|
*/
|
|
class Extension_Swarmify_AdminActions {
|
|
/**
|
|
* Sets the Swarmify API key based on the provided input.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function w3tc_swarmify_set_key() {
|
|
$status_val = Util_Request::get_string( 'status' );
|
|
$swarmcdnkey_val = Util_Request::get_string( 'swarmcdnkey' );
|
|
if ( ! empty( $status_val ) && ! empty( $swarmcdnkey_val ) && '1' === $status_val ) {
|
|
$config = Dispatcher::config();
|
|
$config->set( array( 'swarmify', 'api_key' ), $swarmcdnkey_val );
|
|
$config->save();
|
|
}
|
|
|
|
Util_Environment::redirect( Util_Ui::admin_url( 'admin.php?page=w3tc_extensions&extension=swarmify&action=view' ) );
|
|
exit();
|
|
}
|
|
}
|