For the complete documentation index, see llms.txt. This page is also available as Markdown.

Check if a plugin is loaded.

This feature checks if a plugin is loaded, it's useful for Checking for Dependencies.

use Saturn\PluginManager\PluginLoader;

$Loader = new PluginLoader();
$IsLoaded = $Loader->PluginLoaded('PluginName');
// returns true/false

Last updated