]> git.mxchange.org Git - friendica-addons.git/blobdiff - forumdirectory/forumdirectory.php
Merge pull request #488 from MrPetovan/task/fix-scrutinizer-issues
[friendica-addons.git] / forumdirectory / forumdirectory.php
index fb6b96476ea4ee56dc03f68833eb1e7e0b7c5a24..890c3d61b04c2610e45bf288602b4772107986ef 100644 (file)
@@ -75,7 +75,7 @@ function forumdirectory_content(&$a) {
 
        $admin = '';
 
-       $o .= replace_macros($tpl, array(
+       $o .= replace_macros($tpl, [
                '$search' => $search,
                '$globaldir' => $globaldir,
                '$desc' => t('Find on this site'),
@@ -83,7 +83,7 @@ function forumdirectory_content(&$a) {
                '$finding' => (strlen($search) ? '<h4>' . t('Finding: ') . "'" . $search . "'" . '</h4>' : ""),
                '$sitedir' => t('Site Directory'),
                '$submit' => t('Find')
-       ));
+       ]);
 
        if($search)
                $search = dbesc($search);
@@ -96,7 +96,7 @@ function forumdirectory_content(&$a) {
        if(count($r))
                $a->set_pager_total($r[0]['total']);
 
-       $order = " ORDER BY `name` ASC "; 
+       $order = " ORDER BY `name` ASC ";
 
 
        $r = q("SELECT `profile`.*, `profile`.`uid` AS `profile_uid`, `user`.`nickname`, `user`.`timezone` , `user`.`page-flags` FROM `profile` LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid` WHERE `is-default` = 1 $publish AND `user`.`blocked` = 0 AND `page-flags` = 2 $sql_extra $order LIMIT %d , %d ",
@@ -114,7 +114,7 @@ function forumdirectory_content(&$a) {
 
 
                        $profile_link = $a->get_baseurl() . '/profile/' . ((strlen($rr['nickname'])) ? $rr['nickname'] : $rr['profile_uid']);
-               
+
                        $pdesc = (($rr['pdesc']) ? $rr['pdesc'] . '<br />' : '');
 
                        $details = '';
@@ -132,7 +132,7 @@ function forumdirectory_content(&$a) {
                        }
                        if(strlen($rr['dob'])) {
                                if(($years = age($rr['dob'],$rr['timezone'],'')) != 0)
-                                       $details .= '<br />' . t('Age: ') . $years ; 
+                                       $details .= '<br />' . t('Age: ') . $years ;
                        }
                        if(strlen($rr['gender']))
                                $details .= '<br />' . t('Gender: ') . $rr['gender'];
@@ -164,14 +164,14 @@ function forumdirectory_content(&$a) {
                        $homepage = ((x($profile,'homepage') == 1) ?  t('Homepage:') : False);
 
                        $about = ((x($profile,'about') == 1) ?  t('About:') : False);
-                       
+
 #                      $tpl = file_get_contents( dirname(__file__).'/forumdirectory_item.tpl');
                        $tpl = get_markup_template( 'forumdirectory_item.tpl', 'addon/forumdirectory/' );
 
-                       $entry = replace_macros($tpl,array(
+                       $entry = replace_macros($tpl,[
                                '$id' => $rr['id'],
                                '$profile_link' => $profile_link,
-                               '$photo' => $a->get_cached_avatar_image($rr[$photo]),
+                               '$photo' => $rr[$photo],
                                '$alt_text' => $rr['name'],
                                '$name' => $rr['name'],
                                '$details' => $pdesc . $details,
@@ -184,9 +184,9 @@ function forumdirectory_content(&$a) {
                                '$homepage' => $homepage,
                                '$about' => $about,
 
-                       ));
+                       ]);
 
-                       $arr = array('contact' => $rr, 'entry' => $entry);
+                       $arr = ['contact' => $rr, 'entry' => $entry];
 
                        unset($profile);
                        unset($location);