PATH:
home
/
lab2454c
/
igpma.com
/
wp-content
/
plugins
/
wp-webhooks
/
core
/
includes
/
integrations
/
wpreset
/
actions
<?php if ( ! class_exists( 'WP_Webhooks_Integrations_wpreset_Actions_truncate_custom_tables' ) ) : /** * Load the truncate_custom_tables action * * @since 4.2.0 * @author Ironikus <info@ironikus.com> */ class WP_Webhooks_Integrations_wpreset_Actions_truncate_custom_tables { public function get_details(){ $translation_ident = "action-truncate_custom_tables-content"; $parameter = array( 'confirm' => array( 'required' => true, 'short_description' => WPWHPRO()->helpers->translate( 'Please set this value to "yes". If not set, no tables get truncated.', $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 ) ) ); 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 webhook 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( $return_args, $confirm, $count ){ //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>$return_args</strong> (array) <?php echo WPWHPRO()->helpers->translate( "Contains all the data we send back to the webhook action caller.", $translation_ident ); ?> </li> <li> <strong>$confirm</strong> (bool) <?php echo WPWHPRO()->helpers->translate( "Returns true if the confirm argument was set correctly and false if not.", $translation_ident ); ?> </li> <li> <strong>$count</strong> (integer) <?php echo WPWHPRO()->helpers->translate( "Contains the number of truncated tables.", $translation_ident ); ?> </li> </ol> <?php $parameter['do_action']['description'] = ob_get_clean(); $returns = array( 'success' => array( 'short_description' => WPWHPRO()->helpers->translate( '(Bool) True if the action was successful, false if not. E.g. array( \'success\' => true )', $translation_ident ) ), 'data' => array( 'short_description' => WPWHPRO()->helpers->translate( '(mixed) Count of all the truncated custom tables.', $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 ) ), ); $returns_code = array ( 'success' => true, 'msg' => 'Custom tables successfully truncated.', 'data' => array ( 'count' => 3, ), ); $description = WPWHPRO()->webhook->get_endpoint_description( 'action', array( 'webhook_name' => 'Truncate custom tables', 'webhook_slug' => 'truncate_custom_tables', 'steps' => array( WPWHPRO()->helpers->translate( 'It is also required to set the argument <strong>confirm</strong>, which is needed to confirm that you really want to truncate the custom tables as the action is irreversible.', $translation_ident ), ), 'tipps' => array( WPWHPRO()->helpers->translate( 'It uses the WP Reset function <strong>do_truncate_custom_tables()</strong> to delete custom tables.', $translation_ident ), ), ) ); return array( 'action' => 'truncate_custom_tables', //required 'name' => WPWHPRO()->helpers->translate( 'Truncate custom tables', $translation_ident ), 'sentence' => WPWHPRO()->helpers->translate( 'truncate custom tables', $translation_ident ), 'parameter' => $parameter, 'returns' => $returns, 'returns_code' => $returns_code, 'short_description' => WPWHPRO()->helpers->translate( 'Truncate all custom tables on your 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' => '', 'data' => array( 'count' => 0 ) ); $confirm = ( WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'confirm' ) == 'yes' ) ? true : false; $do_action = WPWHPRO()->helpers->validate_request_value( $response_body['content'], 'do_action' ); if( $confirm ){ $count = $reset_helpers->get_wp_reset()->do_truncate_custom_tables(); $return_args['success'] = true; $return_args['msg'] = WPWHPRO()->helpers->translate( "Custom tables successfully truncated.", 'action-truncate_custom_tables-success' ); $return_args['data']['count'] = $count; } else { $return_args['msg'] = WPWHPRO()->helpers->translate( "Error: Custom tables not truncated. You did not set the confirmation parameter.", 'action-truncate_custom_tables-success' ); } if( ! empty( $do_action ) ){ do_action( $do_action, $return_args, $confirm, $count ); } 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]