aboutsummaryrefslogtreecommitdiffstats
path: root/mod/directory.php
blob: 6d0e1f426828cbd9c6c2695c5e54a9d344c54fca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?php


function directory_content(&$a) {


	$tpl .= file_get_contents('view/directory_header.tpl');

	$o .= replace_macros($tpl, array(

	));

	$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");
	if(count($r)) {

		$tpl = file_get_contents('view/directory_item.tpl');

		foreach($r as $rr) {
			$profile_link = $a->get_baseurl() . '/profile/' . ((strlen($rr['nickname'])) ? $rr['nickname'] : $rr['profile_uid']);


			$o .= replace_macros($tpl,array(
				'$id' => $rr['id'],
				'$profile-link' => $profile_link,
				'$photo' => $rr['photo'],
				'$alt-text' => $rr['name'],
				'$name' => $rr['name'],
				'$details' => $details   // FIXME


			));

		}
		$o .= "<div class=\"directory-end\" ></div>\r\n";
	}
	else
		notice("No entries (some entries may be hidden).");

	return $o;
}