Coding standards
Security in ResourceSpace
Developer reference
Database
Action functions
Admin functions
Ajax functions
Annotation functions
API functions
Collections functions
Comment functions
Config functions
CSV export functions
Dash functions
Debug functions
Encryption functions
Facial recognition functions
File functions
General functions
Language functions
Log functions
Login functions
Message functions
Migration functions
Node functions
PDF functions
Plugin functions
Render functions
Reporting functions
Request functions
Research functions
Slideshow functions
Theme permission functions
User functions
Video functions
Database functions
Metadata functions
Resource functions
Search functions
Map functions
Job functions
Tab functions
Test 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 378 to 382

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");
    return 
is_array($activated) && count($activated)>0;
    }

This article was last updated 4th December 2024 08:35 Europe/London time based on the source file dated 29th November 2024 10:35 Europe/London time.