get_plugin_page_url() public method

Helper method to return the settings page URL for the plugin
public get_plugin_page_url ( array $args = [], string $url_method = 'network', boolean $escape = true ) : string
$args array
$url_method string To prepend to admin_url()
$escape boolean Should we escape the URL
return string
 /**
  * Helper for the above action requests
  *
  * @param int $status
  */
 protected function change_status_request($status)
 {
     $session = $this->get_session();
     $session['status'] = $status;
     $this->save_session($session);
     $url = $this->as3cf->get_plugin_page_url(array(), 'self');
     wp_redirect($url);
     exit;
 }