uawdijnntqw1x1x1
IP : 216.73.217.142
Hostname : localhost.localdomain
Kernel : Linux localhost.localdomain 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
OS : Linux
PATH:
/
var
/
www
/
consult-e-syn
/
..
/
forum-e-syn
/
public_html
/
adm
/
admplugins.php
/
/
<?php /** * copyright : (C) 2001-2013 Advanced Internet Designs Inc. * email : forum@prohost.org * $Id: admplugins.php 5739 2013-11-10 18:24:59Z naudefj $ * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; version 2 of the License. **/ /** Compile themes to apply COMPILER_* hooks. */ function compile_themes() { $r = q('SELECT theme, lang, name FROM '. $GLOBALS['DBHOST_TBL_PREFIX'] .'themes WHERE '. q_bitand('theme_opt', 1) .' = 1'); while (($data = db_rowarr($r))) { try { compile_all($data[0], $data[1], $data[2]); } catch (Exception $e) { pf(errorify('Unable to rebuild theme '. $data[2] .': '. $e->getMessage())); } } pf(successify('Themes were rebuilt.')); } /** Copy a plugin's 'deploy' folder to the forum's web broswable 'themes' directory. */ function deploy_files($plugin) { $fromdir = $GLOBALS['PLUGIN_PATH'] .'/'. $plugin .'/deploy'; $todir = $GLOBALS['WWW_ROOT_DISK'] .'/theme/'. $plugin; if (!is_dir($fromdir)) return; pf(successify('Deploying '. $plugin .' files.')); fud_use('fs.inc', true); fud_mkdir($todir); fud_copy($fromdir, $todir); } /** Remove plugin's files from the forum's web broswable 'themes' folder. */ function undeploy_files($plugin) { $todir = $GLOBALS['WWW_ROOT_DISK'] .'/theme/'. $plugin; if (!is_dir($todir)) return; pf(successify('Undeploying '. $plugin .' files.')); fud_use('fs.inc', true); fud_rmdir($todir, true); } /* main */ // Enable error reporting before GLOBALS.php to show plugin errors. @ini_set('display_errors', 1); error_reporting(E_ALL); require('./GLOBALS.php'); fud_use('adm.inc', true); fud_use('glob.inc', true); fud_use('widgets.inc', true); fud_use('draw_select_opt.inc'); fud_use('plugins.inc', true); // Run-time component. fud_use('plugin_adm.inc', true); // Admin class. fud_use('compiler.inc', true); $tbl = $GLOBALS['DBHOST_TBL_PREFIX']; $help_ar = read_help(); // AJAX call to reorder plugins. if (!empty($_POST['ajax']) && $_POST['ajax'] == 'reorder') { $new_order = 1; foreach ($_POST['order'] as $id) { q('UPDATE '. $tbl .'plugins SET priority = '. $new_order++ .' WHERE id = '. $id); } fud_plugin::rebuild_cache(); exit('Plugins successfully reordered.'); // End AJAX call. } require($WWW_ROOT_DISK .'adm/header.php'); // Enable or disable plugin system (PLUGINS_ENABLED setting). if (isset($_POST['form_posted'])) { if (isset($_POST['FUD_OPT_3_PLUGINS_ENABLED'])) { if ($_POST['FUD_OPT_3_PLUGINS_ENABLED'] & 4194304) { $FUD_OPT_3 |= 4194304; echo successify('Plugin support was successfully enabled.<br />You can now activate plugins below.'); } else { $FUD_OPT_3 &= ~4194304; echo successify('Plugin support was successfully disabled.'); } change_global_settings(array('FUD_OPT_3' => $FUD_OPT_3)); } } // Toggle a plugin's state (from plugin config screen). if (isset($_GET['state'])) { $plugin = $_GET['config']; if ($plugin_id = fud_plugin::is_active($plugin)) { $_GET['deact'] = $plugin; } else { $_GET['act'] = $plugin; } } // Activate a single plugin. if (isset($_GET['act'])) { $plugin = $_GET['act']; list($ok, $msg) = fud_plugin::activate($plugin); if ($ok) { echo $msg ? successify($msg) : successify('Plugin '. $plugin .' was successfully installed and activated.'); } else { echo errorify('Cannot activate '. $plugin .': '. $msg); } } // Deactivate a single plugin. if (isset($_GET['deact'])) { $plugin = $_GET['deact']; list($ok, $msg) = fud_plugin::deactivate($plugin); if ($ok) { echo $msg ? successify($msg) : successify('Plugin '. $plugin .' was successfully deinstalled and deactivated.'); } else { echo errorify('Cannot deactivate '. $plugin .': '. $msg); } } // Activate a group of plugins. if (isset($_POST['activate_plugins'], $_POST['plugins'])) { while (list($key, $plugin) = @each($_POST['plugins'])) { list($ok, $msg) = fud_plugin::activate($plugin); if ($ok) { echo $msg ? successify($msg) : successify('Plugin '. $plugin .' was successfully installed and activated.'); } else { echo errorify('Cannot activate '. $plugin .': '. $msg); } } } // Show plugin info and configuration options. if (isset($_GET['config']) || isset($_POST['config'])) { $plugin = isset($_GET['config']) ? $_GET['config'] : $_POST['config']; $func_base = substr($plugin, 0, strrpos($plugin, '.')); if ( strpos($func_base, '/') ) { $func_base = substr($func_base, strpos($func_base, '/')+1); } include_once($PLUGIN_PATH .'/'. $plugin); // Recompile themes if the plugin requested it. if (defined('REBUILD_THEMES')) { compile_themes(); } // Process info hook. $info_func = $func_base .'_info'; if (function_exists($info_func)) { $info = $info_func(); } // Note H3 instead of H2 to disable context sensitive help. if (isset($info['name'])) { echo '<h3>Plugin: '. $info['name'] .'</h3>'; } else { echo '<h3>Plugin: '. $plugin .'</h3>'; } echo '<fieldset><legend>Meta-information:</legend>'; if (isset($info['desc'])) { echo '<p>'. $info['desc'] .'</p>'; } echo '<table>'; echo '<tr><td><b>Plugin file:</b></td><td>'. $plugin .'</td></tr>'; echo '<tr><td><b>Last modified:</b></td><td>'. date('d F Y H:i:s', filemtime($PLUGIN_PATH .'/'. $plugin)) .'</td></tr>'; if (isset($info['author'])) { echo '<tr><td><b>Author:</b></td><td>'. $info['author'] .'</td></tr>'; } if (isset($info['version'])) { echo '<tr><td><b>Version:</b></td><td>'. $info['version'] .'</td></tr>'; } echo '<tr><td><b>Status:</b></td><td>'; if ($FUD_OPT_3 & 4194304) { $enabled = fud_plugin::is_active($plugin); echo $enabled ? '<font color="green" />Enabled</font>' : '<font color="red" />Disabled</font>'; echo ' <span style="font-size:small;">[ <a href="admplugins.php?state='. $enabled .'&config='. urlencode($plugin) .'&'. __adm_rsid .'" />Toggle</a> ]</span>'; } else { echo '<font color="red">Plugin system is disabled!</font>'; } echo '</td></tr>'; echo '</table>'; echo '<span style="font-size:small; float:right;">'; echo '[ <a href="admbrowse.php?view=1&dest='. $func_base .'.plugin&cur='. urlencode(dirname($PLUGIN_PATH.$plugin)) .'&'. __adm_rsid .'">View code</a> ]'; if (isset($info['help'])) { echo ' [ <a href="'. $info['help'] .'">Plugin documentation</a> ]'; } else { echo ' [ <a href="http://cvs.prohost.org/index.php/'. $func_base .'.plugin">Documentation on Wiki</a> ]'; } echo '</span><br />'; echo '</fieldset>'; // Process config hook. $config_func = $func_base .'_config'; if (function_exists($config_func)) { echo '<form method="post" action="admplugins.php" autocomplete="off">'; echo '<fieldset><legend>Configuration:</legend>'; echo _hs; echo '<input type="hidden" name="config" value="'. $plugin .'" />'; $config_func(); echo '<input type="submit" name="Set" value="Configure" />'; echo '</fieldset></form>'; } echo '<br /><div style="float:right;">[ <a href="admplugins.php?'. __adm_rsid .'">Return to Plugin Manager »</a> ]</div>'; require($WWW_ROOT_DISK .'adm/footer.php'); exit; } // Recompile themes if a plugin requested it. if (defined('REBUILD_THEMES')) { compile_themes(); } ?> <h2>Plugin Manager</h2> <div class="tutor"> Plugins can be used to extend your forum's functionality. To add new plugins, simply <b><a href="admbrowse.php?down=1&cur=<?php echo urlencode($PLUGIN_PATH); ?>&<?php echo __adm_rsid; ?>">upload</a></b> them to your forum and activate them on this page. </div> <br /> <fieldset><legend>Settings:</legend> <form method="post" action="admplugins.php" autocomplete="off"> <?php echo _hs ?> <table class="datatable solidtable"> <?php print_bit_field('Plugins Enabled', 'PLUGINS_ENABLED'); ?> <tr class="fieldaction"><td colspan="2" align="right"><input type="submit" name="btn_submit" value="Set" /></td></tr> </table> </fieldset> <input type="hidden" name="form_posted" value="1" /> </form> <?php if ($FUD_OPT_3 & 4194304) { // Plugin system enabled. // Look for plugin files. foreach (glob("$PLUGIN_PATH/*") as $file) { if (is_dir($file)) { // Check for plugins in subdirectories. $dir = basename($file); foreach (glob("$PLUGIN_PATH/$dir/*") as $dirfile) { if (!preg_match('/\.plugin$/', $dirfile)) continue; // Not a plugin file. $plugin_files[] = $dir .'/'. basename($dirfile); } } if (!preg_match('/\.plugin$/', $file)) continue; // Not a plugin file. $plugin_files[] = basename($file); } // Load plugin to get meta data. $have_enabled_plugins = 0; foreach ($plugin_files as $plugin) { if((include_once $GLOBALS['PLUGIN_PATH'] . $plugin) !== false) { $func_base = substr($plugin, 0, strrpos($plugin, '.')); if ( strpos($func_base, '/') ) { $func_base = substr($func_base, strpos($func_base, '/')+1); } // Process info hook to get meta info. $info_func = $func_base .'_info'; if (function_exists($info_func)) { $info[$plugin] = $info_func(); } else { $info[$plugin]['name'] = $plugin; } // Fill in blanks. if (empty($info[$plugin]['version'])) $info[$plugin]['version'] = ''; if (empty($info[$plugin]['cat'])) $info[$plugin]['cat'] = 'Other'; if (empty($info[$plugin]['desc'])) $info[$plugin]['desc'] = '(no description)'; // Check it is enabled. if (fud_plugin::is_active($plugin)) { $have_enabled_plugins = 1; $info[$plugin]['enabled'] = 1; } else { $info[$plugin]['enabled'] = 0; } } } } ?> <?php if (($FUD_OPT_3 & 4194304) && $have_enabled_plugins) { /* Show if plugin system enabled and we have enabled plugins. */ ?> <h3>Enabled plugins:</h3> <p>The below plugins are active and listed in firing order. Drag and drop them to change the order.</p> <table class="resulttable fulltable"> <thead><tr class="resulttopic"> <th>Plugin name</th><th>Version</th><th>Category</th><th>Description</th><th>Action</th> </tr></thead> <tbody id="sortable"> <?php $i = 0; $c = uq('SELECT id, name, priority FROM '. $tbl .'plugins ORDER BY priority'); while ($r = db_rowobj($c)) { $i++; $bgcolor = ($i%2) ? ' class="resultrow1"' : ' class="resultrow2"'; echo '<tr id="order_'. $r->id .'"'. $bgcolor .' title="'. htmlspecialchars($r->name) .'"> <td><span class="ui-icon ui-icon-arrowthick-2-n-s"></span><a href="admplugins.php?config='. urlencode($r->name) .'&'. __adm_rsid .'" title="Configure plugin">'. $info[$r->name]['name'] .'</a></td> <td>'. $info[$r->name]['version'] .'</td> <td>'. $info[$r->name]['cat'] .'</td> <td>'. preg_replace('/^(.*)(<br|<p).*/is', '\\1', $info[$r->name]['desc']) .'</td> <td><a href="admplugins.php?deact='. $r->name .'&'. __adm_rsid .'">Deactivate</a></td></tr>'; } unset($c); if (!$i) { echo '<tr class="field"><td colspan="3"><center>Activate the required plugins below.</center></td></tr>'; } ?> </table> <?php } ?> <?php if ($FUD_OPT_3 & 4194304) { /* Hide if plugin system is disabled. */ ?> <h3>Available plugins:</h3> <p>Click on any of the below plugin names for more info and configuration options:</p> <form method="post" action="admplugins.php" autocomplete="off"> <?php echo _hs ?> <table class="resulttable fulltable" cellpadding="5"> <thead><tr class="resulttopic"><th>Enable</th><th>Plugin name</th><th>Version</th><th>Category</th><th>Description</th></tr></thead> <?php $i = 0; foreach ($plugin_files as $plugin) { if ($info[$plugin]['enabled']) continue; // Skip, already active. $i++; $bgcolor = ($i%2) ? ' class="resultrow1"' : ' class="resultrow2"'; echo '<tr'. $bgcolor .' valign="top">'; ?> <td class="center"><input type="checkbox" name="plugins[]" value="<?php echo $plugin; ?>" /></td> <td><a href="admplugins.php?config=<?php echo urlencode($plugin) .'&'. __adm_rsid .'" title="Configure plugin">'. $info[$plugin]['name']; ?></a></td> <td><?php echo $info[$plugin]['version']; ?></td> <td><?php echo $info[$plugin]['cat']; ?></td> <td><?php echo preg_replace('/^(.*)(<br|<p).*/is', '\\1', $info[$plugin]['desc']); ?></td> </tr> <?php } ?> </table> <input type="submit" name="activate_plugins" value="Save configuration" /> </form> <?php } ?> <?php require($WWW_ROOT_DISK .'adm/footer.php'); ?>
/var/www/consult-e-syn/../forum-e-syn/public_html/adm/admplugins.php