LLMS_Abstract_Email_Provider::ajax_callback_remote_install_verify()
Ajax callback called after doing the initial install, so the plugin is loaded and available.
Return Return
(void)
Source Source
File: includes/abstracts/llms-abstract-email-provider.php
public function ajax_callback_remote_install_verify() {
$ret = $this->do_remote_install_verify();
ob_clean();
wp_send_json( $ret, ! empty( $ret['status'] ) ? $ret['status'] : 200 );
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 8.0.0 | Introduced. |