activate_plugin

FUNCTION wp-admin\includes\plugin.php (ligne 613) github
Attempts activation of plugin in a "sandbox" and redirects on success. A plugin that is already activated will not attempt to be activated again. The way it works is by setting the redirection to the error before trying to include the plugin file. If the plugin fails, then the redirection will not be overwritten with the success message. Also, the options will not be updated and the activation hook will not be called on plugin error. It should be noted that in no way the below code will actually prevent errors within the file. The code should not be used elsewhere to replicate the "sandbox", which uses redirection to work. {@source 13 1} If any errors are found or text is outputted, then it will be captured to ensure that the success redirection will update the error redirection.

Paramètres

Entrée :
$plugin, $redirect = '', $network_wide = false, $silent = false
Sortie :
@param string $plugin       Path to the plugin file relative to the plugins directory.
@param string $redirect     Optional. URL to redirect to.
@param bool   $network_wide Optional. Whether to enable the plugin for all sites in the network
@param bool   $silent       Optional. Whether to prevent calling activation hooks. Default false.
@return null|WP_Error Null on success, WP_Error on invalid file.

Utilisation

// Utilisation de la fonction activate_plugin
$result = activate_plugin($plugin, $redirect = '', $network_wide = false, $silent = false);

if ($result) {
    // Votre logique ici
}

Actualités

Chargement des actualités...