LLMS_Abstract_Email_Provider::install()

Install the plugin via the WP plugin installer.


Return Return

(boolean|WP_Error) Error object or true when successful.


Top ↑

Source Source

File: includes/abstracts/llms-abstract-email-provider.php

	protected function install() {

		// Check if the plugin already exists and activate it if it is.
		$ret = $this->activate_already_installed_plugin();

		// Plugin doesn't exist, install it.
		if ( false === $ret ) {
			$ret = $this->install_plugin();
		}

		return $ret;
	}


Top ↑

Changelog Changelog

Changelog
Version Description
3.40.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.