芝麻web文件管理V1.00
编辑当前文件:/home/disqkgca/aqanet.org/wp-content/plugins/wpforms-lite/src/Tasks/Actions/AsyncRequestTask.php
hooks(); } /** * Add hooks. * * @since 1.7.5 */ private function hooks() { // Register the migrate action. add_action( self::ACTION, [ $this, 'process' ] ); } /** * Send usage tracking to the server. * * @since 1.7.5 * * @param int $meta_id Action meta id. */ public static function process( $meta_id ) { $params = ( new Meta() )->get( $meta_id ); if ( ! $params ) { return; } list( $url, $args ) = $params->data; wp_safe_remote_get( $url, $args ); } }