2010-07-03 01:37:43 +00:00
< ? php
2011-01-13 05:04:49 +00:00
2010-07-10 07:45:18 +00:00
function directory_init ( & $a ) {
$a -> set_pager_itemspage ( 60 );
2011-10-12 02:27:58 +00:00
if ( local_user ()) {
require_once ( 'include/contact_widgets.php' );
$a -> page [ 'aside' ] .= findpeople_widget ();
}
else
unset ( $_SESSION [ 'theme' ]);
2010-07-10 07:45:18 +00:00
}
2010-07-03 01:37:43 +00:00
2010-12-13 02:43:32 +00:00
function directory_post ( & $a ) {
if ( x ( $_POST , 'search' ))
$a -> data [ 'search' ] = $_POST [ 'search' ];
}
2010-07-03 01:37:43 +00:00
function directory_content ( & $a ) {
2011-04-22 00:29:47 +00:00
if (( get_config ( 'system' , 'block_public' )) && ( ! local_user ()) && ( ! remote_user ())) {
notice ( t ( 'Public access denied.' ) . EOL );
return ;
}
2010-10-31 23:38:22 +00:00
$o = '' ;
2011-08-17 16:36:24 +00:00
nav_set_selected ( 'directory' );
2010-07-10 10:26:21 +00:00
2010-12-13 02:43:32 +00:00
if ( x ( $a -> data , 'search' ))
$search = notags ( trim ( $a -> data [ 'search' ]));
else
2010-12-20 03:55:03 +00:00
$search = (( x ( $_GET , 'search' )) ? notags ( trim ( rawurldecode ( $_GET [ 'search' ]))) : '' );
2010-07-03 01:37:43 +00:00
2011-05-11 11:37:13 +00:00
$tpl = get_markup_template ( 'directory_header.tpl' );
2010-07-03 01:37:43 +00:00
2010-09-24 01:33:07 +00:00
$globaldir = '' ;
$gdirpath = dirname ( get_config ( 'system' , 'directory_submit_url' ));
if ( strlen ( $gdirpath )) {
$globaldir = '<ul><li><div id="global-directory-link"><a href="'
2012-04-14 10:51:41 +00:00
. zrl ( $gdirpath , true ) . '">' . t ( 'Global Directory' ) . '</a></div></li></ul>' ;
2010-09-24 01:33:07 +00:00
}
2010-08-19 11:59:31 +00:00
2011-05-17 01:52:27 +00:00
$admin = '' ;
2010-07-09 10:10:28 +00:00
$o .= replace_macros ( $tpl , array (
2010-07-13 03:16:27 +00:00
'$search' => $search ,
2010-09-24 01:33:07 +00:00
'$globaldir' => $globaldir ,
2011-10-12 02:27:58 +00:00
'$desc' => t ( 'Find on this site' ),
2011-05-17 01:52:27 +00:00
'$admin' => $admin ,
2011-04-07 05:42:08 +00:00
'$finding' => ( strlen ( $search ) ? '<h4>' . t ( 'Finding: ' ) . " ' " . $search . " ' " . '</h4>' : " " ),
'$sitedir' => t ( 'Site Directory' ),
'$submit' => t ( 'Find' )
2010-07-09 10:10:28 +00:00
));
2010-07-10 05:47:32 +00:00
if ( $search )
$search = dbesc ( $search );
2011-03-14 07:28:49 +00:00
$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) " : " " );
2010-07-10 05:47:32 +00:00
2012-03-18 05:14:17 +00:00
$publish = (( get_config ( 'system' , 'publish_all' )) ? '' : " AND `publish` = 1 " );
2010-07-10 07:45:18 +00:00
2011-01-03 05:01:07 +00:00
2011-01-03 06:09:54 +00:00
$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 " );
2010-07-10 07:45:18 +00:00
if ( count ( $r ))
$a -> set_pager_total ( $r [ 0 ][ 'total' ]);
2012-03-18 05:14:17 +00:00
$order = " ORDER BY `name` ASC " ;
2010-07-10 07:45:18 +00:00
2011-05-17 01:52:27 +00:00
$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 $publish AND `user`.`blocked` = 0 $sql_extra $order LIMIT %d , %d " ,
2010-07-10 07:45:18 +00:00
intval ( $a -> pager [ 'start' ]),
intval ( $a -> pager [ 'itemspage' ])
);
2010-07-03 01:37:43 +00:00
if ( count ( $r )) {
2011-05-11 11:37:13 +00:00
$tpl = get_markup_template ( 'directory_item.tpl' );
2010-07-03 01:37:43 +00:00
2010-07-10 00:39:55 +00:00
if ( in_array ( 'small' , $a -> argv ))
$photo = 'thumb' ;
else
$photo = 'photo' ;
2010-07-03 01:37:43 +00:00
foreach ( $r as $rr ) {
2010-07-31 09:18:37 +00:00
2010-07-10 00:39:55 +00:00
$profile_link = $a -> get_baseurl () . '/profile/' . (( strlen ( $rr [ 'nickname' ])) ? $rr [ 'nickname' ] : $rr [ 'profile_uid' ]);
2011-01-19 03:25:28 +00:00
$pdesc = (( $rr [ 'pdesc' ]) ? $rr [ 'pdesc' ] . '<br />' : '' );
2010-07-10 00:39:55 +00:00
$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' ];
}
2010-07-10 05:47:32 +00:00
if ( strlen ( $rr [ 'dob' ])) {
if (( $years = age ( $rr [ 'dob' ], $rr [ 'timezone' ], '' )) != 0 )
2011-03-22 23:34:12 +00:00
$details .= '<br />' . t ( 'Age: ' ) . $years ;
2010-07-10 05:47:32 +00:00
}
2010-07-10 00:39:55 +00:00
if ( strlen ( $rr [ 'gender' ]))
2011-03-22 23:34:12 +00:00
$details .= '<br />' . t ( 'Gender: ' ) . $rr [ 'gender' ];
2010-07-09 08:17:20 +00:00
2010-12-25 23:01:02 +00:00
$entry = replace_macros ( $tpl , array (
2010-07-09 10:10:28 +00:00
'$id' => $rr [ 'id' ],
'$profile-link' => $profile_link ,
2010-07-10 00:39:55 +00:00
'$photo' => $rr [ $photo ],
2010-07-09 10:10:28 +00:00
'$alt-text' => $rr [ 'name' ],
'$name' => $rr [ 'name' ],
2011-01-19 03:25:28 +00:00
'$details' => $pdesc . $details
2010-07-09 08:17:20 +00:00
));
2010-07-03 01:37:43 +00:00
2010-12-25 23:01:02 +00:00
$arr = array ( 'contact' => $rr , 'entry' => $entry );
call_hooks ( 'directory_item' , $arr );
$o .= $entry ;
2010-07-03 01:37:43 +00:00
}
2010-12-25 23:01:02 +00:00
2010-07-09 10:10:28 +00:00
$o .= " <div class= \" directory-end \" ></div> \r \n " ;
2010-07-10 07:45:18 +00:00
$o .= paginate ( $a );
2010-07-03 01:37:43 +00:00
}
else
2011-05-23 09:39:57 +00:00
info ( t ( " No entries \x28 some entries may be hidden \x29 . " ) . EOL );
2010-07-09 10:10:28 +00:00
return $o ;
2011-05-23 09:39:57 +00:00
}