PATH:
home
/
lab2454c
/
igpma.com
/
wp-content
/
plugins
/
wp-webhooks
/
core
/
includes
/
integrations
/
wpreset
/
actions
<?php if ( ! class_exists( 'WP_Webhooks_Integrations_wpreset_Actions_reset_wp' ) ) : /** * Load the reset_wp action * * @since 4.2.0 * @author Ironikus <info@ironikus.com> */ class WP_Webhooks_Integrations_wpreset_Actions_reset_wp { public function get_details(){ $translation_ident = "action-reset_wp-content"; $parameter = array( 'confirm' => array( 'required' => true, 'short_description' => WPWHPRO()->helpers->translate( 'Please set this value to "yes". If not set, nothing gets reset.', $translation_ident ) ), 'reactivate_theme' => array( 'short_description' => WPWHPRO()->helpers->translate( 'Wether you want to reactivate the currently active theme again or not. Possible values: "yes" and "no". Default: "no"', $translation_ident ) ), 'reactivate_plugins' => array( 'short_description' => WPWHPRO()->helpers->translate( 'Wether you want to reactivate the currently active plugins again or not. Possible values: "yes" and "no". Default: "no"', $translation_ident ) ), 'reactivate_wpreset' => array( 'short_description' => WPWHPRO()->helpers->translate( 'Wether you want to reactivate WP Reset again or not. Possible values: "yes" and "no". Default: "no"', $translation_ident ) ), 'do_action' => array( 'short_description' => WPWHPRO()->helpers->translate( 'Advanced: Register a custom action after Webhooks Pro fires this webhook. More infos are in the description.', $translation_ident ) ) ); $returns = array( 'success' => array( 'short_description' => WPWHPRO()->helpers->translate( '(Bool) True if the action was successful, false if not. E.g. array( \'success\' => true )', 'action-reset_wp-content' ) ), 'data' => array( 'short_description' => WPWHPRO()->helpers->translate( '(mixed) The attachment id on success, wp_error on inserting error, upload error on wrong upload or status code error.', $translation_ident ) ), 'msg' => array( 'short_description' => WPWHPRO()->helpers->translate( '(string) A message with more information about the current request. E.g. array( \'msg\' => "This action was successful." )', $translation_ident ) ), ); ob_start(); ?> <?php echo WPWHPRO()->helpers->translate( "The <strong>do_action</strong> argument is an advanced webhook for developers. It allows you to fire a custom WordPress hook after the <strong>reset_wp</strong> action was fired.", $translation_ident ); ?> <br> <?php echo WPWHPRO()->helpers->translate( "You can use it to trigger further logic after the webhook action. Here's an example:", $translation_ident ); ?> <br> <br> <?php echo WPWHPRO()->helpers->translate( "Let's assume you set for the <strong>do_action</strong> parameter <strong>fire_this_function</strong>. In this case, we will trigger an action with the hook name <strong>fire_this_function</strong>. Here's how the code would look in this case:", $translation_ident ); ?> <pre>add_action( 'fire_this_function', 'my_custom_callback_function', 20, 3 ); function my_custom_callback_function( $reactivate_theme, $reactivate_plugins, $reactivate_wpreset ){ //run your custom logic in here } </pre> <?php echo WPWHPRO()->helpers->translate( "Here's an explanation to each of the variables that are sent over within the custom function.", $translation_ident ); ?> <ol> <li> <strong>$reactivate_theme</strong> (bool)<br> <?php echo WPWHPRO()->helpers->translate( "True if you chose to reactivate installed themes.", $translation_ident ); ?> </li> <li> <strong>$reactivate_plugins</strong> (bool)<br> <?php echo WPWHPRO()->helpers->translate( "True if you chose to reactivate installed plugins.", $translation_ident ); ?> </li> <li> <strong>$reactivate_wpreset</strong> (bool)<br> <?php echo WPWHPRO()->helpers->translate( "True if you chose to reactivate WP Reset.", $translation_ident ); ?> </li> </ol> <?php $parameter['do_action']['description'] = ob_get_clean(); $returns_code = array ( 'success' => true, 'msg' => 'Reset was successful.', ); $description = WPWHPRO()->webhook->get_endpoint_description( 'action', array( 'webhook_name' => 'Reset WordPress', 'webhook_slug' => 'reset_wp', 'steps' => array( WPWHPRO()->helpers->translate( 'It is also required to set the argument <strong>confirm</strong>, which by default is set to "no". This is a secondary security measurement to make sure you do not accidentially reset your website.', $translation_ident ), ), ) ); return array( 'action' => 'reset_wp', //required 'name' => WPWHPRO()->helpers->translate( 'Reset WordPress', $translation_ident ), 'sentence' => WPWHPRO()->helpers->translate( 'reset WordPress', $translation_ident ), 'parameter' => $parameter, 'returns' => $returns, 'returns_code' => $returns_code, 'short_description' => WPWHPRO()->helpers->translate( 'Reset your whole website using webhooks.', $translation_ident ), 'description' => $description, 'integration' => 'wpreset' ); } public function execute( $return_data, $response_body ){ $reset_helpers = WPWHPRO()->integrations->get_helper( 'wpreset', 'reset_helpers' ); $return_args = array( 'success' => false, 'msg' => '', ); $confirm = ( WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'confirm' ) == 'yes' ) ? true : false; $reactivate_theme = ( WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'reactivate_theme' ) == 'yes' ) ? true : false; $reactivate_plugins = ( WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'reactivate_plugins' ) == 'yes' ) ? true : false; $reactivate_wpreset = ( WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'reactivate_wpreset' ) == 'yes' ) ? true : false; $do_action = WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'do_action' ); if( $confirm ){ $args = array( 'reactivate_theme' => $reactivate_theme, 'reactivate_plugins' => $reactivate_plugins, 'reactivate_wpreset' => $reactivate_wpreset ); //Remove the redirect add_filter( 'wp_redirect', array( $reset_helpers, 'wpwhpro_remove_redirect_filter' ), 100, 2 ); add_filter( 'wp-reset-override-is-cli-running', array( $reset_helpers, 'activate_cli_for_wp_reset' ), 100 ); $reset_helpers->get_wp_reset()->do_reinstall( $args ); //Add the redirect again remove_filter( 'wp_redirect', array( $reset_helpers, 'wpwhpro_remove_redirect_filter' ) ); remove_filter( 'wp-reset-override-is-cli-running', array( $reset_helpers, 'activate_cli_for_wp_reset' ), 100 ); $return_args['success'] = true; $return_args['msg'] = WPWHPRO()->helpers->translate( "Reset was successful.", 'action-create_url_attachment-success' ); } else { $return_args['msg'] = WPWHPRO()->helpers->translate( "Error: Nothing was reset. You did not set the confirmation parameter.", 'action-delete_transients-success' ); } if( ! empty( $do_action ) ){ do_action( $do_action, $reactivate_theme, $reactivate_plugins, $reactivate_wpreset ); } return $return_args; } } endif; // End if class_exists check.
[-] delete_themes.php
[edit]
[-] index.php
[edit]
[+]
..
[-] delete_custom_tables.php
[edit]
[-] delete_htaccess.php
[edit]
[-] reset_wp.php
[edit]
[-] delete_transients.php
[edit]
[-] delete_plugins.php
[edit]
[-] truncate_custom_tables.php
[edit]
[-] clean_uploads_folder.php
[edit]