Initial commit: Backup der Webseiten
- zoesch.de - blitzkiste.net - gruene-hassberge (norbert.zoesch.de) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
28
zoesch.de/galerie/themes/smartpocket/admin/admin.inc.php
Normal file
28
zoesch.de/galerie/themes/smartpocket/admin/admin.inc.php
Normal file
@@ -0,0 +1,28 @@
|
||||
<?php
|
||||
|
||||
// Need upgrade?
|
||||
global $conf;
|
||||
include(PHPWG_THEMES_PATH.'smartpocket/admin/upgrade.inc.php');
|
||||
|
||||
load_language('theme.lang', PHPWG_THEMES_PATH.'smartpocket/');
|
||||
|
||||
$config_send= array();
|
||||
|
||||
if(isset($_POST['submit_smartpocket']))
|
||||
{
|
||||
$config_send['loop'] = isset($_POST['loop']);
|
||||
$config_send['autohide'] = (isset($_POST['autohide']) ? 5000 : 0);
|
||||
|
||||
conf_update_param('smartpocket', $config_send, true);
|
||||
|
||||
array_push($page['infos'], l10n('Information data registered in database'));
|
||||
}
|
||||
|
||||
$template->set_filenames(array(
|
||||
'theme_admin_content' => dirname(__FILE__) . '/admin.tpl'));
|
||||
|
||||
$template->assign('options', safe_unserialize($conf['smartpocket']));
|
||||
|
||||
$template->assign_var_from_handle('ADMIN_CONTENT', 'theme_admin_content');
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user