diff options
author | ArthurHoaro <arthur@hoa.ro> | 2017-03-08 19:57:15 +0100 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2017-03-08 19:57:15 +0100 |
commit | 7c26f6626a47c7e3e902f6b00c7c9e640a18f22c (patch) | |
tree | 16d4bdb027687f8035a2c710c219a463444be7fa | |
parent | db0caba3c40c8d073779e77b2bada8cdba6d0518 (diff) | |
download | Shaarli-7c26f6626a47c7e3e902f6b00c7c9e640a18f22c.tar.gz Shaarli-7c26f6626a47c7e3e902f6b00c7c9e640a18f22c.tar.zst Shaarli-7c26f6626a47c7e3e902f6b00c7c9e640a18f22c.zip |
Display private only filter as search parameter
-rw-r--r-- | index.php | 1 | ||||
-rw-r--r-- | tpl/default/css/shaarli.css | 4 | ||||
-rw-r--r-- | tpl/default/linklist.html | 8 |
3 files changed, 12 insertions, 1 deletions
@@ -1681,6 +1681,7 @@ function buildLinkList($PAGE,$LINKSDB, $conf, $pluginManager) | |||
1681 | 'result_count' => count($linksToDisplay), | 1681 | 'result_count' => count($linksToDisplay), |
1682 | 'search_term' => $searchterm, | 1682 | 'search_term' => $searchterm, |
1683 | 'search_tags' => $searchtags, | 1683 | 'search_tags' => $searchtags, |
1684 | 'visibility' => ! empty($_SESSION['privateonly']) ? 'private' : '', | ||
1684 | 'redirector' => $conf->get('redirector.url'), // Optional redirector URL. | 1685 | 'redirector' => $conf->get('redirector.url'), // Optional redirector URL. |
1685 | 'links' => $linkDisp, | 1686 | 'links' => $linkDisp, |
1686 | 'tags' => $LINKSDB->allTags(), | 1687 | 'tags' => $LINKSDB->allTags(), |
diff --git a/tpl/default/css/shaarli.css b/tpl/default/css/shaarli.css index b937c596..d33e9066 100644 --- a/tpl/default/css/shaarli.css +++ b/tpl/default/css/shaarli.css | |||
@@ -985,6 +985,10 @@ div.awesomplete > ul { | |||
985 | margin: 0 0 0 5px; | 985 | margin: 0 0 0 5px; |
986 | } | 986 | } |
987 | 987 | ||
988 | .search-result .label-private { | ||
989 | border: 1px solid white; | ||
990 | } | ||
991 | |||
988 | /** | 992 | /** |
989 | * TOOLS | 993 | * TOOLS |
990 | */ | 994 | */ |
diff --git a/tpl/default/linklist.html b/tpl/default/linklist.html index 9bc3ba1a..94370203 100644 --- a/tpl/default/linklist.html +++ b/tpl/default/linklist.html | |||
@@ -89,7 +89,7 @@ | |||
89 | <div id="searchcriteria">{'Nothing found.'|t}</div> | 89 | <div id="searchcriteria">{'Nothing found.'|t}</div> |
90 | </div> | 90 | </div> |
91 | </div> | 91 | </div> |
92 | {elseif="!empty($search_term) or !empty($search_tags)"} | 92 | {elseif="!empty($search_term) or !empty($search_tags) or !empty($visibility)"} |
93 | <div class="pure-g pure-alert pure-alert-success search-result"> | 93 | <div class="pure-g pure-alert pure-alert-success search-result"> |
94 | <div class="pure-u-2-24"></div> | 94 | <div class="pure-u-2-24"></div> |
95 | <div class="pure-u-20-24"> | 95 | <div class="pure-u-20-24"> |
@@ -106,6 +106,12 @@ | |||
106 | </span> | 106 | </span> |
107 | {/loop} | 107 | {/loop} |
108 | {/if} | 108 | {/if} |
109 | {if="!empty($visibility)"} | ||
110 | {'with status'|t} | ||
111 | <span class="label label-private"> | ||
112 | {$visibility|t} | ||
113 | </span> | ||
114 | {/if} | ||
109 | </div> | 115 | </div> |
110 | </div> | 116 | </div> |
111 | {/if} | 117 | {/if} |