
LCARS is a template for the GetSimple CMS that mimics the monitor appearance in the television series Star Trek: The Next Generation
125 lines
3.8 KiB
PHP
125 lines
3.8 KiB
PHP
<?php
|
|
/**
|
|
* All Plugins
|
|
*
|
|
* Displays all installed plugins
|
|
*
|
|
* @package GetSimple
|
|
* @subpackage Plugins
|
|
*/
|
|
|
|
// Setup inclusions
|
|
$load['plugin'] = true;
|
|
|
|
// Include common.php
|
|
include('inc/common.php');
|
|
|
|
$pluginid = isset($_GET['set']) ? $_GET['set'] : null;
|
|
$nonce = isset($_GET['nonce']) ? $_GET['nonce'] : null;
|
|
|
|
if ($pluginid){
|
|
if(check_nonce($nonce, "set", "plugins.php")) {
|
|
$plugin=antixss($pluginid);
|
|
change_plugin($plugin);
|
|
redirect('plugins.php');
|
|
}
|
|
}
|
|
|
|
|
|
// Variable settings
|
|
login_cookie_check();
|
|
$counter = 0; $table = null;
|
|
|
|
$pluginfiles = getFiles(GSPLUGINPATH);
|
|
natcasesort($pluginfiles);
|
|
$needsupdate = false;
|
|
foreach ($pluginfiles as $fi) {
|
|
$pathExt = pathinfo($fi,PATHINFO_EXTENSION );
|
|
$pathName = pathinfo_filename($fi);
|
|
$setNonce='&nonce='.get_nonce("set","plugins.php");
|
|
|
|
if ($pathExt=="php") {
|
|
if ($live_plugins[$fi]=='true') {
|
|
$cls_Enabled = 'hidden';
|
|
$cls_Disabled = '';
|
|
$trclass='enabled';
|
|
} else {
|
|
$cls_Enabled = '';
|
|
$cls_Disabled = 'hidden';
|
|
$trclass='disabled';
|
|
}
|
|
$api_data = json_decode(get_api_details('plugin', $fi));
|
|
$updatelink = null;
|
|
if (is_object($api_data) && $api_data->status == 'successful') {
|
|
if ($api_data->version > $plugin_info[$pathName]['version']) {
|
|
$updatelink = '<br /><a class="updatelink" href="'.$api_data->path.'" target="_blank">'.i18n_r('UPDATE_AVAILABLE').' '.$api_data->version.'</a>';
|
|
$needsupdate = true;
|
|
}
|
|
$plugin_title = '<a href="'.$api_data->path.'" target="_blank">'.$api_data->name.'</a>';
|
|
} else {
|
|
$plugin_title = $plugin_info[$pathName]['name'];
|
|
}
|
|
$table .= '<tr id="tr-'.$counter.'" class="'.$trclass.'" >';
|
|
$table .= '<td style="width:150px" ><b>'.$plugin_title.'</b></td>';
|
|
$table .= '<td><span>'.$plugin_info[$pathName]['description'];
|
|
if ($plugin_info[$pathName]['version']!='disabled'){
|
|
$table .= '<br /><b>'.i18n_r('PLUGIN_VER') .' '. $plugin_info[$pathName]['version'].'</b> — '.i18n_r('AUTHOR').': <a href="'.$plugin_info[$pathName]['author_url'].'" target="_blank">'.$plugin_info[$pathName]['author'].'</a></span>';
|
|
}
|
|
$table.= $updatelink.'</td><td style="width:60px;" class="status" >
|
|
<a href="plugins.php?set='.$fi.$setNonce.'" class="toggleEnable '.$cls_Enabled.'" style="padding: 1px 3px;" title="'.i18n_r('ENABLE').': '.$plugin_info[$pathName]['name'] .'" >'.i18n_r('ENABLE').'</a>
|
|
<a href="plugins.php?set='.$fi.$setNonce.'" class="cancel toggleEnable '.$cls_Disabled.'" title="'.i18n_r('DISABLE').': '.$plugin_info[$pathName]['name'] .'" >'.i18n_r('DISABLE').'</a>
|
|
</td>';
|
|
$table .= "</tr>\n";
|
|
$counter++;
|
|
}
|
|
}
|
|
|
|
# set trigger for plugin update notification
|
|
if ($needsupdate) {
|
|
touch(GSCACHEPATH.'plugin-update.trigger');
|
|
} else {
|
|
if (file_exists(GSCACHEPATH.'plugin-update.trigger')) {
|
|
unlink(GSCACHEPATH.'plugin-update.trigger');
|
|
}
|
|
}
|
|
|
|
exec_action('plugin-hook');
|
|
get_template('header', cl($SITENAME).' » '.i18n_r('PLUGINS_MANAGEMENT'));
|
|
|
|
?>
|
|
|
|
<?php include('template/include-nav.php'); ?>
|
|
|
|
<div class="bodycontent clearfix">
|
|
|
|
<div id="maincontent">
|
|
<div class="main" >
|
|
<h3><?php i18n('PLUGINS_MANAGEMENT'); ?></h3>
|
|
|
|
<?php if ($counter > 0) { ?>
|
|
<table class="edittable">
|
|
<tr><th><?php i18n('PLUGIN_NAME'); ?></th><th><?php i18n('PLUGIN_DESC'); ?></th><th><?php i18n('STATUS'); ?></th></tr>
|
|
<?php echo $table; ?>
|
|
</table>
|
|
<?php } ?>
|
|
|
|
|
|
<p><em><b><span id="pg_counter"><?php echo $counter; ?></span></b> <?php i18n('PLUGINS_INSTALLED'); ?>
|
|
<?php
|
|
if ($counter == 0) {
|
|
echo ' - <a href="http://get-simple.info/extend/" target="_blank" >'. str_replace(array('<em>','</em>'), '', i18n_r('GET_PLUGINS_LINK')) .'</a>';
|
|
}
|
|
?>
|
|
</em></p>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<div id="sidebar" >
|
|
<?php include('template/sidebar-plugins.php'); ?>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?php get_template('footer'); ?>
|