friendica/mod/directory.php

62 lines
1.5 KiB
PHP
Raw Normal View History

<?php
function directory_content(&$a) {
2010-07-09 12:10:28 +02:00
$tpl .= file_get_contents('view/directory_header.tpl');
2010-07-09 12:10:28 +02:00
$o .= replace_macros($tpl, array(
2010-07-09 12:10:28 +02:00
));
2010-07-10 02:39:55 +02:00
$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(count($r)) {
2010-07-09 10:17:20 +02:00
$tpl = file_get_contents('view/directory_item.tpl');
2010-07-10 02:39:55 +02:00
if(in_array('small', $a->argv))
$photo = 'thumb';
else
$photo = 'photo';
foreach($r as $rr) {
2010-07-10 02:39:55 +02:00
$profile_link = $a->get_baseurl() . '/profile/' . ((strlen($rr['nickname'])) ? $rr['nickname'] : $rr['profile_uid']);
$details = '';
if(strlen($rr['locality']))
$details .= $rr['locality'];
if(strlen($rr['region'])) {
if(strlen($rr['locality']))
$details .= ', ';
$details .= $rr['region'];
}
if(strlen($rr['country-name'])) {
if(strlen($details))
$details .= ', ';
$details .= $rr['country-name'];
}
if(strlen($rr['dob']))
$details .= '<br />Age: ' ; // . calculate age($rr['dob'])) ;
if(strlen($rr['gender']))
$details .= '<br />Gender: ' . $rr['gender'];
2010-07-09 10:17:20 +02:00
2010-07-09 12:10:28 +02:00
$o .= replace_macros($tpl,array(
'$id' => $rr['id'],
'$profile-link' => $profile_link,
2010-07-10 02:39:55 +02:00
'$photo' => $rr[$photo],
2010-07-09 12:10:28 +02:00
'$alt-text' => $rr['name'],
'$name' => $rr['name'],
2010-07-10 02:39:55 +02:00
'$details' => $details
2010-07-09 10:17:20 +02:00
));
}
2010-07-09 12:10:28 +02:00
$o .= "<div class=\"directory-end\" ></div>\r\n";
}
else
notice("No entries (some entries may be hidden).");
2010-07-09 12:10:28 +02:00
return $o;
}