aboutsummaryrefslogtreecommitdiffstats
path: root/mod/dirsearch.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-09-18 17:47:26 -0700
committerfriendica <info@friendica.com>2013-09-18 17:47:26 -0700
commite4d2e2200e04c8df699d9a8efade661123ef7ac8 (patch)
treeeb97cdeb19f72ef9dbddf5074510bf9f82f50632 /mod/dirsearch.php
parente06b4c6dfc0b3419f35dd8d42770d1c983523830 (diff)
downloadvolse-hubzilla-e4d2e2200e04c8df699d9a8efade661123ef7ac8.tar.gz
volse-hubzilla-e4d2e2200e04c8df699d9a8efade661123ef7ac8.tar.bz2
volse-hubzilla-e4d2e2200e04c8df699d9a8efade661123ef7ac8.zip
add "tiered" access policy, add tagcloud to directory pages
Diffstat (limited to 'mod/dirsearch.php')
-rw-r--r--mod/dirsearch.php9
1 files changed, 6 insertions, 3 deletions
diff --git a/mod/dirsearch.php b/mod/dirsearch.php
index 0a4d0ed2b..a522cd541 100644
--- a/mod/dirsearch.php
+++ b/mod/dirsearch.php
@@ -40,6 +40,7 @@ function dirsearch_content(&$a) {
$keywords = ((x($_REQUEST,'keywords')) ? $_REQUEST['keywords'] : '');
$agege = ((x($_REQUEST,'agege')) ? intval($_REQUEST['agege']) : 0 );
$agele = ((x($_REQUEST,'agele')) ? intval($_REQUEST['agele']) : 0 );
+ $kw = ((x($_REQUEST,'kw')) ? intval($_REQUEST['kw']) : 0 );
$sync = ((x($_REQUEST,'sync')) ? datetime_convert('UTC','UTC',$_REQUEST['sync']) : '');
$sort_order = ((x($_REQUEST,'order')) ? $_REQUEST['order'] : '');
@@ -175,12 +176,12 @@ function dirsearch_content(&$a) {
}
$ret['results'] = $entries;
- if(! $sync) {
- $k = dir_tagadelic(24);
+ if(($kw) && (! $sync)) {
+ $k = dir_tagadelic($kw);
if($k) {
$ret['keywords'] = array();
foreach($k as $kv) {
- $ret['keywords'][] = array('term' => $kv[0],'weight' => $kv[1]);
+ $ret['keywords'][] = array('term' => $kv[0],'weight' => $kv[1], 'normalise' => $kv[2]);
}
}
}
@@ -203,6 +204,8 @@ function list_public_sites() {
$access = 'free';
elseif($rr['site_access'] == ACCESS_PAID)
$access = 'paid';
+ elseif($rr['site_access'] == ACCESS_TIERED)
+ $access = 'tiered';
else
$access = 'private';