module_slug = $module_slug; } /** * Builds the module connect destination URL. * * @since 1.181.0 * * @param Context $context Plugin context. * @return string Destination URL. */ public function handle( Context $context ) { return add_query_arg( array( 'slug' => $this->module_slug, 'reAuth' => 'true', ), $context->admin_url( 'dashboard' ) ); } }