1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 20:00:37 +02:00

#1196 - Check for dependencies on plugin installation (cleanup)

More cleaning needed
This commit is contained in:
Tijn Kuyper
2016-02-07 20:17:19 +01:00
parent 2976754d29
commit 82969eaa1c
2 changed files with 20 additions and 19 deletions

View File

@@ -945,31 +945,32 @@ class pluginManager{
// -----------------------------------------------------------------------------
// TODO FIXME - This needs cleaning: e107::getMessage(), limit the globals, etc.
function pluginInstall()
{
global $plugin,$admin_log,$eplug_folder;
$text = $plugin->install_plugin($this->id);
$text = $plugin->install_plugin($this->id);
$log = e107::getAdminLog();
if ($text === FALSE)
{ // Tidy this up
$this->show_message(EPL_ADLAN_99, E_MESSAGE_ERROR);
}
else
{
$plugin->save_addon_prefs('update');
$info = $plugin->getinfo($this->id);
$name = deftrue($info['plugin_name'],$info['plugin_name']). " v".$info['plugin_version']. "({e_PLUGIN}".$info['plugin_path'].")";
$log->log_event('PLUGMAN_01', $name, E_LOG_INFORMATIVE, '');
$this->show_message($text, E_MESSAGE_SUCCESS);
}
if ($text === FALSE)
{ // Tidy this up
$this->show_message(EPL_ADLAN_99, E_MESSAGE_ERROR);
}
else
{
$plugin->save_addon_prefs('update');
$info = $plugin->getinfo($this->id);
$name = deftrue($info['plugin_name'],$info['plugin_name']). " v".$info['plugin_version']. "({e_PLUGIN}".$info['plugin_path'].")";
$log->log_event('PLUGMAN_01', $name, E_LOG_INFORMATIVE, '');
$this->show_message($text, E_MESSAGE_SUCCESS);
}
}