LLMS_Add_On::is_active()

Determine if an installable addon is active


Return Return

(bool)


Top ↑

Source Source

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

		}

		return $img;
	}

	/**
	 * Determine if there is an available update for the add-on
	 *
	 * @since 3.22.0
	 *
	 * @return bool
	 */
	public function has_available_update() {
		return version_compare( $this->get_installed_version(), $this->get_latest_version(), '<' );
	}

	/**


Top ↑

Changelog Changelog

Changelog
Version Description
3.22.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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