]> git.mxchange.org Git - friendica.git/blobdiff - mod/match.php
autocomplete contacts nickname while writting in a comment box.
[friendica.git] / mod / match.php
index 7228529d74eb9bc136715c6e8d8235f6b1bb93d1..c33bbd5c2de7b5d9deaec1463df9fdb95252bf63 100644 (file)
@@ -15,19 +15,23 @@ function match_content(&$a) {
        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;
 
        }
 
        $params = array();
        $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'];
-
-               $x = post_url('http://dir.friendika.com/msearch', $params);
+                       
+               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);
 
                $j = json_decode($x);
 
@@ -37,20 +41,25 @@ function match_content(&$a) {
                }
 
                if(count($j->results)) {
+                       
+                       $tpl = get_markup_template('match.tpl');
                        foreach($j->results as $jj) {
-                               $o .= '<div class="profile-match-wrapper"><div class="profile-match-photo">';
-                               $o .= '<a href="' . $jj->url . '">' . '<img src="' . $jj->photo . '" alt="' . $jj->name . '" /></a></div>';
-                               $o .= '<div class="profile-match-break"></div>';
-                               $o .= '<div class="profile-match-name"><a href="' . $jj->url . '">' . $jj->name . '</a></div>';
-                               $o .= '<div class="profile-match-end"></div></div>';
+                               
+                               $o .= replace_macros($tpl,array(
+                                       '$url' => $jj->url,
+                                       '$name' => $jj->name,
+                                       '$photo' => $jj->photo,
+                                       '$tags' => $jj->tags
+                               ));
                        }
                }
                else {
-                       notice( t('No matches') . EOL);
+                       info( t('No matches') . EOL);
                }               
 
        }
 
+       $o .= cleardiv();
        $o .= paginate($a);
        return $o;
-}
\ No newline at end of file
+}