Submit
Path:
~
/
home
/
getwphos
/
www
/
shellfish
/
wp-content
/
plugins
/
broken-link-checker
/
app
/
hub-endpoints
/
edit-link
/
File Content:
class-controller.php
<?php /** * An endpoint where Hub can send requests and edit broken links. * * @link https://wordpress.org/plugins/broken-link-checker/ * @since 2.1.0 * * @author WPMUDEV (https://wpmudev.com) * @package WPMUDEV_BLC\App\Hub_Endpoints\Edit_Link * * @copyright (c) 2022, Incsub (http://incsub.com) */ namespace WPMUDEV_BLC\App\Hub_Endpoints\Edit_Link; // Abort if called directly. defined( 'WPINC' ) || die; use WPMUDEV_BLC\App\Broken_Links_Actions\Router; use WPMUDEV_BLC\Core\Controllers\Hub_Endpoint; /** * Class Controller * * @package WPMUDEV_BLC\App\Hub_Endpoint\Edit_Link */ class Controller extends Hub_Endpoint { public function process() { $router_response = Router::instance()->direct_endpoint( 'edit' ); if ( ! empty( $router_response['error_code'] ) ) { $return = array( 'success' => false, 'data' => json_decode( \json_encode( array( 'code' => $router_response['error_code'] ? sanitize_text_field( $router_response['error_code'] ) : 'BLC_ERROR', 'message' => $router_response['message'] ? \wp_kses_post( $router_response['message'] ) : \esc_html__( 'Something went wrong with this HTTP request', 'broken-link-checker' ), ) ) ), ); wp_send_json( $return ); } $this->output_formatted_response( $router_response ); } /** * Sets the endpoint's action vars to be used by Dash plugin. */ protected function setup_action_vars() { $this->endpoint_action_name = 'blc_edit_link'; $this->endpoint_action_callback = 'process'; } }
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
class-controller.php
1539 bytes
0644
N4ST4R_ID | Naxtarrr