aboutsummaryrefslogtreecommitdiffstats
path: root/mod/dirprofile.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-12-23 19:44:23 -0800
committerfriendica <info@friendica.com>2013-12-23 19:44:23 -0800
commit8194ade8868bb57180d49a86216fc6fd680b4e79 (patch)
tree046854eccc3532fbef059fcfce59b4cced08e2f5 /mod/dirprofile.php
parent766454a607425d74d90fe0125fcadff5c80a2c58 (diff)
downloadvolse-hubzilla-8194ade8868bb57180d49a86216fc6fd680b4e79.tar.gz
volse-hubzilla-8194ade8868bb57180d49a86216fc6fd680b4e79.tar.bz2
volse-hubzilla-8194ade8868bb57180d49a86216fc6fd680b4e79.zip
improve the directory popup a bit
Diffstat (limited to 'mod/dirprofile.php')
-rw-r--r--mod/dirprofile.php42
1 files changed, 35 insertions, 7 deletions
diff --git a/mod/dirprofile.php b/mod/dirprofile.php
index 133089419..dd583a89e 100644
--- a/mod/dirprofile.php
+++ b/mod/dirprofile.php
@@ -104,16 +104,42 @@ function dirprofile_init(&$a) {
|| (x($profile,'country') == 1))
$location = t('Location:');
- $gender = ((x($profile,'gender') == 1) ? t('Gender:') : False);
- $marital = ((x($profile,'marital') == 1) ? t('Status:') : False);
+ $marital = ((x($profile,'marital') == 1) ? t('Status: ') . $profile['marital'] : False);
+ $sexual = ((x($profile,'sexual') == 1) ? t('Sexual Preference: ') . $profile['sexual'] : False);
- $homepage = ((x($profile,'homepage') == 1) ? t('Homepage:') : False);
-
- $about = ((x($profile,'about') == 1) ? t('About:') : False);
-
+// $homepage = ((x($profile,'homepage') == 1) ? t('Homepage: ') . $profile['homepage'] : False);
+
+// $about = ((x($profile,'about') == 1) ? t('About: ') . $profile['about'] : False);
+
+ $keywords = ((x($profile,'keywords')) ? $profile['keywords'] : '');
+ if($keywords) {
+ $keywords = str_replace(',',' ', $keywords);
+ $keywords = str_replace(' ',' ', $keywords);
+ $karr = explode(' ', $keywords);
+ $out = '';
+ if($karr) {
+ if(local_user()) {
+ $r = q("select keywords from profile where uid = %d and is_default = 1 limit 1",
+ intval(local_user())
+ );
+ if($r) {
+ $keywords = str_replace(',',' ', $r[0]['keywords']);
+ $keywords = str_replace(' ',' ', $keywords);
+ $marr = explode(' ', $keywords);
+ }
+ }
+ foreach($karr as $k) {
+ if(strlen($out))
+ $out .= ', ';
+ if($marr && in_array($k,$marr))
+ $out .= '<strong>' . $k . '</strong>';
+ else
+ $out .= $k;
+ }
+ }
-
+ }
$entry = replace_macros(get_markup_template('direntry_large.tpl'), array(
'$id' => ++$t,
'$profile_link' => $profile_link,
@@ -128,6 +154,8 @@ function dirprofile_init(&$a) {
'$marital' => $marital,
'$homepage' => $homepage,
'$about' => $about,
+ '$kw' => (($out) ? t('Keywords: ') : ''),
+ '$keywords' => $out,
'$conn_label' => t('Connect'),
'$connect' => $connect_link,
));