X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fmatch.php;h=5dd80fe3efad761e90757e6e34ef31595e076d5d;hb=c8cf2d1773623980d8055ff392b400aecb2a09b3;hp=ce2ece428ce168a711df2ea3217090f3b1b98338;hpb=e16bca4f76fde5cea40b5a855ed9210718a7ed76;p=friendica.git diff --git a/mod/match.php b/mod/match.php index ce2ece428c..5dd80fe3ef 100644 --- a/mod/match.php +++ b/mod/match.php @@ -3,16 +3,19 @@ function match_content(&$a) { + $o = ''; if(! local_user()) return; + $o .= '

' . t('Profile Match') . '

'; + $r = q("SELECT `pub_keywords`, `prv_keywords` FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1", intval(local_user()) ); if(! count($r)) return; if(! $r[0]['pub_keywords'] && (! $r[0]['prv_keywords'])) { - notice('No keywords to match. Please add keywords to your default profile.'); + notice( t('No keywords to match. Please add keywords to your default profile.') . EOL); return; } @@ -21,22 +24,38 @@ function match_content(&$a) { $tags = trim($r[0]['pub_keywords'] . ' ' . $r[0]['prv_keywords']); if($tags) { $params['s'] = $tags; + if($a->pager['page'] != 1) + $params['p'] = $a->pager['page']; + + if(strlen(get_config('system','directory_submit_url'))) + $x = post_url('http://dir.friendika.com/msearch', $params); + else + $x = post_url($a->get_baseurl() . '/msearch', $params); - - $x = post_url('http://dir.friendika.com/msearch', $params); $j = json_decode($x); - if(count($j)) { + if($j->total) { + $a->set_pager_total($j->total); + $a->set_pager_itemspage($j->items_page); + } + if(count($j->results)) { + foreach($j->results as $jj) { - foreach($j as $jj) { - $o .= '' . '' . $jj[1] . '' . $jj[0] . ''; + $o .= '
'; + $o .= '' . '' . $jj->name . '
'; + $o .= '
'; + $o .= '
' . $jj->name . '
'; + $o .= '
'; } + $o .= '
'; } else { - notice( t('No matches') . EOL); + info( t('No matches') . EOL); } } + + $o .= paginate($a); return $o; -} \ No newline at end of file +}