$s) { $core->auth->user_prefs->addWorkspace($ws); foreach ($s as $k => $v) { if ($_POST['s_type'][$ws][$k] == 'array') { $v = json_decode($v, true); } $core->auth->user_prefs->$ws->put($k, $v); } } dcPage::addSuccessNotice(__('Preferences successfully updated')); http::redirect($p_url); } catch (Exception $e) { $core->error->add($e->getMessage()); } } # Global prefs update if (!empty($_POST['gs']) && is_array($_POST['gs'])) { try { foreach ($_POST['gs'] as $ws => $s) { $core->auth->user_prefs->addWorkspace($ws); foreach ($s as $k => $v) { if ($_POST['gs_type'][$ws][$k] == 'array') { $v = json_decode($v, true); } $core->auth->user_prefs->$ws->put($k, $v, null, null, true, true); } } dcPage::addSuccessNotice(__('Preferences successfully updated')); http::redirect($p_url . '&part=global'); } catch (Exception $e) { $core->error->add($e->getMessage()); } } $part = !empty($_GET['part']) && $_GET['part'] == 'global' ? 'global' : 'local'; function prefLine($id, $s, $ws, $field_name, $strong_label) { if ($s['type'] == 'boolean') { $field = form::combo(array($field_name . '[' . $ws . '][' . $id . ']', $field_name . '_' . $ws . '_' . $id), array(__('yes') => 1, __('no') => 0), $s['value'] ? 1 : 0); } else { if ($s['type'] == 'array') { $field = form::field(array($field_name . '[' . $ws . '][' . $id . ']', $field_name . '_' . $ws . '_' . $id), 40, null, html::escapeHTML(json_encode($s['value']))); } else { $field = form::field(array($field_name . '[' . $ws . '][' . $id . ']', $field_name . '_' . $ws . '_' . $id), 40, null, html::escapeHTML($s['value'])); } } $type = form::hidden(array($field_name . '_type' . '[' . $ws . '][' . $id . ']', $field_name . '_' . $ws . '_' . $id . '_type'), html::escapeHTML($s['type'])); $slabel = $strong_label ? '%s' : '%s'; return '' . '' . '' . $field . '' . '' . $s['type'] . $type . '' . '' . html::escapeHTML($s['label']) . '' . ''; } ?> user:preferences '', html::escapeHTML($core->auth->userID()) => '', __('user:preferences') => '' )) . dcPage::notices(); ?>

' . '' . '' . "\n" . ' ' . "\n" . ' ' . "\n" . ' ' . "\n" . ' ' . "\n" . '' . "\n" . '' . "\n" . ''; $table_footer = '
%s
' . __('Setting ID') . '' . __('Value') . '' . __('Type') . '' . __('Description') . '
'; $prefs = array(); foreach ($core->auth->user_prefs->dumpWorkspaces() as $ws => $workspace) { foreach ($workspace->dumpPrefs() as $k => $v) { $prefs[$ws][$k] = $v; } } ksort($prefs); if (count($prefs) > 0) { $ws_combo = array(); foreach ($prefs as $ws => $s) { $ws_combo[$ws] = '#l_' . $ws; } echo '
' . '

' . ' ' . form::combo('lp_nav', $ws_combo, array('class' => 'navigation')) . ' ' . '' . $core->formNonce() . '

'; } ?>
$s) { ksort($s); echo sprintf($table_header, 'l_' . $ws, $ws); foreach ($s as $k => $v) { echo prefLine($k, $v, $ws, 's', !$v['global']); } echo $table_footer; } ?>

formNonce(); ?>

auth->user_prefs->dumpWorkspaces() as $ws => $workspace) { foreach ($workspace->dumpGlobalPrefs() as $k => $v) { $prefs[$ws][$k] = $v; } } ksort($prefs); if (count($prefs) > 0) { $ws_combo = array(); foreach ($prefs as $ws => $s) { $ws_combo[$ws] = '#g_' . $ws; } echo '
' . '

' . ' ' . form::combo('gp_nav', $ws_combo, array('class' => 'navigation')) . ' ' . '' . $core->formNonce() . '

'; } ?>
$s) { ksort($s); echo sprintf($table_header, 'g_' . $ws, $ws); foreach ($s as $k => $v) { echo prefLine($k, $v, $ws, 'gs', false); } echo $table_footer; } ?>

formNonce(); ?>