Skip to content

Instantly share code, notes, and snippets.

@vojtasvoboda
Created January 4, 2016 10:41
Show Gist options
  • Save vojtasvoboda/e73310fbe17de4da0691 to your computer and use it in GitHub Desktop.
Save vojtasvoboda/e73310fbe17de4da0691 to your computer and use it in GitHub Desktop.
Is plugin active condition in OctoberCMS
<?php
use System\Classes\PluginManager;
protected function isPluginActive($pluginName)
{
$pluginManager = PluginManager::instance();
return array_key_exists($pluginName, $pluginManager->getPlugins());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment