aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-06-01 12:11:07 +0200
committerMario Vavti <mario@mariovavti.com>2018-06-01 12:11:07 +0200
commit6bf0f4225c0fc7ecc1762ed5cfe2c4861cd1bd4e (patch)
treee97a2f276650c978e6415db00449f81f00d236ba /Zotlabs
parentd03c27d18c10d287cbfd3133b3301934d0457636 (diff)
downloadvolse-hubzilla-6bf0f4225c0fc7ecc1762ed5cfe2c4861cd1bd4e.tar.gz
volse-hubzilla-6bf0f4225c0fc7ecc1762ed5cfe2c4861cd1bd4e.tar.bz2
volse-hubzilla-6bf0f4225c0fc7ecc1762ed5cfe2c4861cd1bd4e.zip
move file and groups filter to submenu
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Widget/Activity_filter.php65
-rw-r--r--Zotlabs/Widget/Activity_order.php16
2 files changed, 54 insertions, 27 deletions
diff --git a/Zotlabs/Widget/Activity_filter.php b/Zotlabs/Widget/Activity_filter.php
index a85ab8dc1..18207b37b 100644
--- a/Zotlabs/Widget/Activity_filter.php
+++ b/Zotlabs/Widget/Activity_filter.php
@@ -17,7 +17,7 @@ class Activity_filter {
if(feature_enabled(local_channel(),'personal_tab')) {
if(x($_GET,'conv')) {
$conv_active = (($_GET['conv'] == 1) ? 'active' : '');
- $filter_active = true;
+ $filter_active = 'personal';
}
$tabs[] = [
@@ -32,7 +32,7 @@ class Activity_filter {
if(feature_enabled(local_channel(),'star_posts')) {
if(x($_GET,'star')) {
$starred_active = (($_GET['star'] == 1) ? 'active' : '');
- $filter_active = true;
+ $filter_active = 'star';
}
$tabs[] = [
@@ -53,17 +53,26 @@ class Activity_filter {
foreach($groups as $g) {
if(x($_GET,'gid')) {
$group_active = (($_GET['gid'] == $g['id']) ? 'active' : '');
- $filter_active = true;
+ $filter_active = 'group';
}
-
- $tabs[] = [
+ $gsub[] = [
'label' => $g['gname'],
- 'icon' => 'users',
+ 'icon' => '',
'url' => z_root() . '/' . $cmd . '/?f=&gid=' . $g['id'],
'sel' => $group_active,
'title' => sprintf(t('Show posts related to the %s privacy group'), $g['gname']),
];
}
+ $tabs[] = [
+ 'id' => 'privacy_groups',
+ 'label' => t('Privacy Groups'),
+ 'icon' => 'users',
+ 'url' => '#',
+ 'sel' => (($filter_active == 'group') ? true : false),
+ 'title' => sprintf(t('Show posts that i have filed to %s'), $t['term']),
+ 'sub' => $gsub
+
+ ];
}
}
@@ -77,50 +86,64 @@ class Activity_filter {
foreach($terms as $t) {
if(x($_GET,'file')) {
$file_active = (($_GET['file'] == $t['term']) ? 'active' : '');
- $filter_active = true;
+ $filter_active = 'file';
}
-
- $tabs[] = [
+ $tsub[] = [
'label' => $t['term'],
- 'icon' => 'folder',
+ 'icon' => '',
'url' => z_root() . '/' . $cmd . '/?f=&file=' . $t['term'],
'sel' => $file_active,
- 'title' => sprintf(t('Show posts that i have filed to %s'), $t['term']),
+ 'title' => '',
];
}
+
+ $tabs[] = [
+ 'label' => t('Saved Folders'),
+ 'icon' => 'folder',
+ 'url' => '#',
+ 'sel' => (($filter_active == 'file') ? true : false),
+ 'title' => sprintf(t('Show posts that i have filed to %s'), $t['term']),
+ 'sub' => $tsub
+
+ ];
}
}
if(x($_GET,'search')) {
- $filter_active = true;
+ $filter_active = 'search';
}
+ $reset = [];
if($filter_active) {
$reset = [
- 'label' => t('Remove Filter'),
+ 'label' => '',
'icon' => 'remove',
'url'=> z_root() . '/' . $cmd,
- 'sel'=> 'active bg-danger',
+ 'sel'=> '',
'title' => t('Remove active filter'),
];
- array_unshift($tabs, $reset);
}
$arr = ['tabs' => $tabs];
call_hooks('network_tabs', $arr);
- $tpl = get_markup_template('common_pills.tpl');
+ $o = '';
if($arr['tabs']) {
- return replace_macros($tpl, [
+ $content = replace_macros(get_markup_template('common_pills.tpl'), [
+ '$pills' => $arr['tabs'],
+ ]);
+
+ $o .= replace_macros(get_markup_template('activity_filter_widget.tpl'), [
'$title' => t('Activity Filters'),
- '$tabs' => $arr['tabs'],
+ '$reset' => $reset,
+ '$content' => $content,
]);
}
- else {
- return '';
- }
+
+ return $o;
+
}
}
diff --git a/Zotlabs/Widget/Activity_order.php b/Zotlabs/Widget/Activity_order.php
index 10ec142d9..93bfc5a26 100644
--- a/Zotlabs/Widget/Activity_order.php
+++ b/Zotlabs/Widget/Activity_order.php
@@ -105,17 +105,21 @@ class Activity_order {
call_hooks('network_tabs', $arr);
- $tpl = get_markup_template('common_pills.tpl');
+ $o = '';
if($arr['tabs']) {
- return replace_macros($tpl, [
+ $content = replace_macros(get_markup_template('common_pills.tpl'), [
+ '$pills' => $arr['tabs'],
+ ]);
+
+ $o = replace_macros(get_markup_template('common_widget.tpl'), [
'$title' => t('Activity Order'),
- '$tabs' => $arr['tabs'],
+ '$content' => $content,
]);
}
- else {
- return '';
- }
+
+ return $o;
+
}
}