LLMS_Add_On::uninstall()

Verifies the add-on can be uninstalled, and performs the uninstall (permanently deleting its files)


Return Return

(string|WP_Error) Success message or an error object.


Top ↑

Source Source

File: includes/models/model.llms.add-on.php

			return false;
		}

		// Loop through the list.
		foreach ( $addons['items'] as $addon ) {

			// We've found a match.
			if ( isset( $addon[ $lookup_key ] ) && $addon[ $lookup_key ] === $lookup_val ) {
				return $addon;
			}
		}

		return false;

	}

	/**


Top ↑

Changelog Changelog

Changelog
Version Description
5.1.1 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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