X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fdirectory.php;h=703c08ce1bec37bfdd1add92c130fd5b812f05e4;hb=e59377d96b09c8d7bc0090ce2cea0e99517c7d9b;hp=0a7d7355e76910d31dfb0cf2388be22637f1a80d;hpb=4a92de756395b403b13849917dcb519fe57db016;p=friendica.git diff --git a/mod/directory.php b/mod/directory.php index 0a7d7355e7..703c08ce1b 100644 --- a/mod/directory.php +++ b/mod/directory.php @@ -1,19 +1,47 @@ set_pager_itemspage(60); +} function directory_content(&$a) { + $o = ''; + $o .= ''; + $search = ((x($_GET,'search')) ? notags(trim($_GET['search'])) : ''); - $tpl .= file_get_contents('view/directory_header.tpl'); + $tpl = load_view_file('view/directory_header.tpl'); - $o .= replace_macros($tpl, array( + $globaldir = ''; + $gdirpath = dirname(get_config('system','directory_submit_url')); + if(strlen($gdirpath)) { + $globaldir = ''; + } + $o .= replace_macros($tpl, array( + '$search' => $search, + '$globaldir' => $globaldir, + '$finding' => (strlen($search) ? '

' . t('Finding: ') . "'" . $search . "'" . '

' : "") )); - $r = q("SELECT `profile`.*, `profile`.`uid` AS `profile_uid`, `user`.`nickname` FROM `profile` LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid` WHERE `is-default` = 1 AND `publish` = 1 ORDER BY `name` ASC"); + if($search) + $search = dbesc($search); + $sql_extra = ((strlen($search)) ? " AND MATCH (`profile`.`name`, `user`.`nickname`, `locality`,`region`,`country-name`,`gender`,`marital`,`sexual`,`about`,`romance`,`work`,`education`) AGAINST ('$search' IN BOOLEAN MODE) " : ""); + + + $r = q("SELECT COUNT(*) AS `total` FROM `profile` LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid` WHERE `is-default` = 1 AND `publish` = 1 AND `user`.`blocked` = 0 $sql_extra "); + if(count($r)) + $a->set_pager_total($r[0]['total']); + + + + $r = q("SELECT `profile`.*, `profile`.`uid` AS `profile_uid`, `user`.`nickname`, `user`.`timezone` FROM `profile` LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid` WHERE `is-default` = 1 AND `publish` = 1 AND `user`.`blocked` = 0 $sql_extra ORDER BY `name` ASC LIMIT %d , %d ", + intval($a->pager['start']), + intval($a->pager['itemspage']) + ); if(count($r)) { - $tpl = file_get_contents('view/directory_item.tpl'); + $tpl = load_view_file('view/directory_item.tpl'); if(in_array('small', $a->argv)) $photo = 'thumb'; @@ -22,6 +50,7 @@ function directory_content(&$a) { foreach($r as $rr) { + $profile_link = $a->get_baseurl() . '/profile/' . ((strlen($rr['nickname'])) ? $rr['nickname'] : $rr['profile_uid']); $details = ''; if(strlen($rr['locality'])) @@ -36,8 +65,10 @@ function directory_content(&$a) { $details .= ', '; $details .= $rr['country-name']; } - if(strlen($rr['dob'])) - $details .= '
Age: ' ; // . calculate age($rr['dob'])) ; + if(strlen($rr['dob'])) { + if(($years = age($rr['dob'],$rr['timezone'],'')) != 0) + $details .= "
Age: $years" ; + } if(strlen($rr['gender'])) $details .= '
Gender: ' . $rr['gender']; @@ -54,6 +85,8 @@ function directory_content(&$a) { } $o .= "
\r\n"; + $o .= paginate($a); + } else notice("No entries (some entries may be hidden).");