Collections functions
General functions
Render functions
Theme permission functions
User functions
Resource functions

is_plugin_activated()

Description

Check if a plugin is activated.

Returns true is a plugin is activated in the plugins database.

Parameters

ColumnTypeDefaultDescription
$name
Name $name of plugin to check

Return

bool Returns true is plugin is activated.

Location

include/plugin_functions.php lines 354 to 365

Definition

 
function is_plugin_activated($name)
    {
    
$activated ps_query("SELECT name FROM plugins WHERE name = ? and inst_version IS NOT NULL", array("s"$name), "plugins");
    if (
is_array($activated) && count($activated)>0)
        {
        return 
true;
        }
    else
        {
        return 
false;
        }
    }

This article was last updated 29th November 2023 17:35 Europe/London time based on the source file dated 7th September 2023 11:45 Europe/London time.