2015-06-11 04:27:04 +02:00
|
|
|
<?php defined('BLUDIT') or die('Bludit CMS.');
|
|
|
|
|
|
|
|
// ============================================================================
|
|
|
|
// Check role
|
|
|
|
// ============================================================================
|
|
|
|
|
|
|
|
if($Login->role()!=='admin') {
|
2015-07-20 05:14:12 +02:00
|
|
|
Alert::set($Language->g('you-do-not-have-sufficient-permissions'));
|
2017-05-27 19:46:46 +02:00
|
|
|
Redirect::page('dashboard');
|
2015-06-11 04:27:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// ============================================================================
|
|
|
|
// Functions
|
|
|
|
// ============================================================================
|
|
|
|
|
2015-08-03 02:49:12 +02:00
|
|
|
// ============================================================================
|
|
|
|
// Main before POST
|
|
|
|
// ============================================================================
|
|
|
|
|
2015-06-11 04:27:04 +02:00
|
|
|
// ============================================================================
|
|
|
|
// POST Method
|
|
|
|
// ============================================================================
|
|
|
|
|
|
|
|
// ============================================================================
|
2015-08-03 02:49:12 +02:00
|
|
|
// Main after POST
|
2015-06-11 04:27:04 +02:00
|
|
|
// ============================================================================
|
2015-06-12 06:00:04 +02:00
|
|
|
$pluginClassName = $layout['parameters'];
|
|
|
|
|
2017-06-18 22:44:07 +02:00
|
|
|
// Check if the plugin exists
|
|
|
|
if( isset($plugins['all'][$pluginClassName]) ) {
|
|
|
|
$plugin = $plugins['all'][$pluginClassName];
|
|
|
|
|
2017-07-02 22:46:05 +02:00
|
|
|
// Plugins for Bludit PRO
|
|
|
|
$blackList = array('pluginTimeMachine', 'pluginRemoteContent');
|
|
|
|
if( in_array($pluginClassName, $blackList) && !defined('BLUDIT_PRO') ) {
|
|
|
|
Redirect::page('plugins');
|
|
|
|
}
|
|
|
|
|
2017-06-18 22:44:07 +02:00
|
|
|
// Install plugin
|
|
|
|
if( $plugin->install() ) {
|
|
|
|
// Add to syslog
|
|
|
|
$Syslog->add(array(
|
|
|
|
'dictionaryKey'=>'plugin-installed',
|
|
|
|
'notes'=>$plugin->name()
|
|
|
|
));
|
|
|
|
|
|
|
|
// Create an alert
|
|
|
|
Alert::set($Language->g('Plugin installed'));
|
2015-07-28 03:01:52 +02:00
|
|
|
}
|
|
|
|
}
|
2015-06-12 06:00:04 +02:00
|
|
|
|
2017-05-27 19:46:46 +02:00
|
|
|
Redirect::page('plugins');
|