3 function directory_init(&$a) {
4 $a->set_pager_itemspage(60);
7 require_once('include/contact_widgets.php');
9 $a->page['aside'] .= findpeople_widget();
13 unset($_SESSION['theme']);
14 unset($_SESSION['mobile-theme']);
21 function directory_post(&$a) {
22 if(x($_POST,'search'))
23 $a->data['search'] = $_POST['search'];
28 function directory_content(&$a) {
30 require_once("mod/proxy.php");
32 if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
33 notice( t('Public access denied.') . EOL);
38 nav_set_selected('directory');
40 if(x($a->data,'search'))
41 $search = notags(trim($a->data['search']));
43 $search = ((x($_GET,'search')) ? notags(trim(rawurldecode($_GET['search']))) : '');
45 $tpl = get_markup_template('directory_header.tpl');
48 $gdirpath = dirname(get_config('system','directory_submit_url'));
49 if(strlen($gdirpath)) {
50 $globaldir = '<ul><li><div id="global-directory-link"><a href="'
51 . zrl($gdirpath,true) . '">' . t('Global Directory') . '</a></div></li></ul>';
56 $o .= replace_macros($tpl, array(
58 '$globaldir' => $globaldir,
59 '$desc' => t('Find on this site'),
61 '$finding' => (strlen($search) ? '<h4>' . t('Finding: ') . "'" . $search . "'" . '</h4>' : ""),
62 '$sitedir' => t('Site Directory'),
63 '$submit' => t('Find')
67 $search = dbesc($search);
68 $sql_extra = ((strlen($search)) ? " AND MATCH (`profile`.`name`, `user`.`nickname`, `pdesc`, `locality`,`region`,`country-name`,`gender`,`marital`,`sexual`,`about`,`romance`,`work`,`education`,`pub_keywords`,`prv_keywords` ) AGAINST ('$search' IN BOOLEAN MODE) " : "");
70 $publish = ((get_config('system','publish_all')) ? '' : " AND `publish` = 1 " );
73 $r = q("SELECT COUNT(*) AS `total` FROM `profile` LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid` WHERE `is-default` = 1 $publish AND `user`.`blocked` = 0 $sql_extra ");
75 $a->set_pager_total($r[0]['total']);
77 $order = " ORDER BY `name` ASC ";
80 $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 $sql_extra $order LIMIT %d , %d ",
81 intval($a->pager['start']),
82 intval($a->pager['itemspage'])
86 if(in_array('small', $a->argv))
94 $profile_link = $a->get_baseurl() . '/profile/' . ((strlen($rr['nickname'])) ? $rr['nickname'] : $rr['profile_uid']);
96 $pdesc = (($rr['pdesc']) ? $rr['pdesc'] . '<br />' : '');
99 if(strlen($rr['locality']))
100 $details .= $rr['locality'];
101 if(strlen($rr['region'])) {
102 if(strlen($rr['locality']))
104 $details .= $rr['region'];
106 if(strlen($rr['country-name'])) {
109 $details .= $rr['country-name'];
111 if(strlen($rr['dob'])) {
112 if(($years = age($rr['dob'],$rr['timezone'],'')) != 0)
113 $details .= '<br />' . t('Age: ') . $years ;
115 if(strlen($rr['gender']))
116 $details .= '<br />' . t('Gender: ') . $rr['gender'];
118 if($rr['page-flags'] == PAGE_NORMAL)
119 $page_type = "Personal Profile";
120 if($rr['page-flags'] == PAGE_SOAPBOX)
121 $page_type = "Fan Page";
122 if($rr['page-flags'] == PAGE_COMMUNITY)
123 $page_type = "Community Forum";
124 if($rr['page-flags'] == PAGE_FREELOVE)
125 $page_type = "Open Forum";
126 if($rr['page-flags'] == PAGE_PRVGROUP)
127 $page_type = "Private Group";
131 if((x($profile,'address') == 1)
132 || (x($profile,'locality') == 1)
133 || (x($profile,'region') == 1)
134 || (x($profile,'postal-code') == 1)
135 || (x($profile,'country-name') == 1))
136 $location = t('Location:');
138 $gender = ((x($profile,'gender') == 1) ? t('Gender:') : False);
140 $marital = ((x($profile,'marital') == 1) ? t('Status:') : False);
142 $homepage = ((x($profile,'homepage') == 1) ? t('Homepage:') : False);
144 $about = ((x($profile,'about') == 1) ? t('About:') : False);
146 $tpl = get_markup_template('directory_item.tpl');
148 if($a->theme['template_engine'] === 'internal') {
149 $location_e = template_escape($location);
152 $location_e = $location;
155 $entry = replace_macros($tpl,array(
157 '$profile_link' => $profile_link,
158 '$photo' => proxy_url($a->get_cached_avatar_image($rr[$photo])),
159 '$alt_text' => $rr['name'],
160 '$name' => $rr['name'],
161 '$details' => $pdesc . $details,
162 '$page_type' => $page_type,
163 '$profile' => $profile,
164 '$location' => $location_e,
165 '$gender' => $gender,
167 '$marital' => $marital,
168 '$homepage' => $homepage,
173 $arr = array('contact' => $rr, 'entry' => $entry);
175 call_hooks('directory_item', $arr);
184 $o .= "<div class=\"directory-end\" ></div>\r\n";
189 info( t("No entries \x28some entries may be hidden\x29.") . EOL);