aboutsummaryrefslogtreecommitdiffstats
path: root/include/dir_fns.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2015-07-07 22:29:27 +0200
committerMario Vavti <mario@mariovavti.com>2015-07-07 22:29:27 +0200
commitf67d9d59afea32a90ea546163da25e36cc4ad9fb (patch)
treea9bf8aae9c798226dfadab62e1af168e2d61b2e2 /include/dir_fns.php
parent9c577e042292bd8227b40f9500d19eecd974a8e4 (diff)
downloadvolse-hubzilla-f67d9d59afea32a90ea546163da25e36cc4ad9fb.tar.gz
volse-hubzilla-f67d9d59afea32a90ea546163da25e36cc4ad9fb.tar.bz2
volse-hubzilla-f67d9d59afea32a90ea546163da25e36cc4ad9fb.zip
rename function get_directory_settings => get_directory_setting and move sort options to directory title bar
Diffstat (limited to 'include/dir_fns.php')
-rw-r--r--include/dir_fns.php24
1 files changed, 4 insertions, 20 deletions
diff --git a/include/dir_fns.php b/include/dir_fns.php
index e13c05100..29f33f46e 100644
--- a/include/dir_fns.php
+++ b/include/dir_fns.php
@@ -72,7 +72,7 @@ function check_upstream_directory() {
set_config('system', 'directory_server', '');
}
-function get_directory_settings($observer, $setting) {
+function get_directory_setting($observer, $setting) {
if ($observer)
$ret = get_xconfig($observer, 'directory', $setting);
@@ -97,14 +97,13 @@ function dir_sort_links() {
$observer = get_observer_hash();
- $safe_mode = get_directory_settings($observer, 'safemode');
- $globaldir = get_directory_settings($observer, 'globaldir');
- $pubforums = get_directory_settings($observer, 'pubforums');
+ $safe_mode = get_directory_setting($observer, 'safemode');
+ $globaldir = get_directory_setting($observer, 'globaldir');
+ $pubforums = get_directory_setting($observer, 'pubforums');
// Build urls without order and pubforums so it's easy to tack on the changed value
// Probably there's an easier way to do this
-
$directory_sort_order = get_config('system','directory_sort_order');
if(! $directory_sort_order)
$directory_sort_order = 'date';
@@ -117,14 +116,6 @@ function dir_sort_links() {
$tmp = array_merge($_GET,$_POST);
unset($tmp['suggest']);
unset($tmp['pubforums']);
- unset($tmp['order']);
- unset($tmp['q']);
- unset($tmp['f']);
- $sorturl = $url . $suggest . http_build_query($tmp);
-
- $tmp = array_merge($_GET,$_POST);
- unset($tmp['suggest']);
- unset($tmp['pubforums']);
unset($tmp['global']);
unset($tmp['safe']);
unset($tmp['q']);
@@ -133,13 +124,6 @@ function dir_sort_links() {
$o = replace_macros(get_markup_template('dir_sort_links.tpl'), array(
'$header' => t('Directory Options'),
- '$normal' => t('Alphabetic'),
- '$reverse' => t('Reverse Alphabetic'),
- '$date' => t('Newest to Oldest'),
- '$reversedate' => t('Oldest to Newest'),
- '$sort' => t('Sort'),
- '$selected_sort' => $current_order,
- '$sorturl' => $sorturl,
'$forumsurl' => $forumsurl,
'$safemode' => array('safemode', t('Safe Mode'),$safe_mode,'',array(t('No'), t('Yes')),' onchange=\'window.location.href="' . $forumsurl . '&safe="+(this.checked ? 1 : 0)\''),
'$pubforums' => array('pubforums', t('Public Forums Only'),$pubforums,'',array(t('No'), t('Yes')),' onchange=\'window.location.href="' . $forumsurl . '&pubforums="+(this.checked ? 1 : 0)\''),