]> git.mxchange.org Git - friendica.git/blob - include/profile_advanced.php
quattro: in post display page, scroll to and flash selected comment
[friendica.git] / include / profile_advanced.php
1 <?php
2
3 function advanced_profile(&$a) {
4
5         $o = '';
6
7         $o .= '<h2>' . t('Profile') . '</h2>';
8
9         if($a->profile['name']) {
10
11                 $tpl = get_markup_template('profile_advanced.tpl');
12                 
13                 $profile = array();
14                 
15                 $profile['fullname'] = array( t('Full Name:'), $a->profile['name'] ) ;
16                 
17                 if($a->profile['gender']) $profile['gender'] = array( t('Gender:'),  $a->profile['gender'] );
18                 
19
20                 if(($a->profile['dob']) && ($a->profile['dob'] != '0000-00-00')) {
21                 
22                         $year_bd_format = t('j F, Y');
23                         $short_bd_format = t('j F');
24
25                 
26                         $val = ((intval($a->profile['dob'])) 
27                                 ? day_translate(datetime_convert('UTC','UTC',$a->profile['dob'] . ' 00:00 +00:00',$year_bd_format))
28                                 : day_translate(datetime_convert('UTC','UTC','2001-' . substr($a->profile['dob'],5) . ' 00:00 +00:00',$short_bd_format)));
29
30                         $profile['birthday'] = array( t('Birthday:'), $val);
31
32                 }
33
34                 if($age = age($a->profile['dob'],$a->profile['timezone'],''))  $profile['age'] = array( t('Age:'), $age );
35                         
36
37                 if($a->profile['marital']) $profile['marital'] = array( t('Status:'), $a->profile['marital']);
38
39
40                 if($a->profile['with']) $profile['marital']['with'] = $a->profile['with'];
41
42                 if(strlen($a->profile['howlong']) && $a->profile['howlong'] !== '0000-00-00 00:00:00') {
43                                 $profile['howlong'] = relative_date($a->profile['howlong'], t('for %1$d %2$s'));
44                 }
45
46                 if($a->profile['sexual']) $profile['sexual'] = array( t('Sexual Preference:'), $a->profile['sexual'] );
47
48                 if($a->profile['homepage']) $profile['homepage'] = array( t('Homepage:'), linkify($a->profile['homepage']) );
49
50                 if($a->profile['hometown']) $profile['hometown'] = array( t('Hometown:'), linkify($a->profile['hometown']) );
51
52                 if($a->profile['pub_keywords']) $profile['pub_keywords'] = array( t('Tags:'), $a->profile['pub_keywords']);
53
54                 if($a->profile['politic']) $profile['politic'] = array( t('Political Views:'), $a->profile['politic']);
55
56                 if($a->profile['religion']) $profile['religion'] = array( t('Religion:'), $a->profile['religion']);
57
58                 if($txt = prepare_text($a->profile['about'])) $profile['about'] = array( t('About:'), $txt );
59
60                 if($txt = prepare_text($a->profile['interest'])) $profile['interest'] = array( t('Hobbies/Interests:'), $txt);
61
62                 if($txt = prepare_text($a->profile['contact'])) $profile['contact'] = array( t('Contact information and Social Networks:'), $txt);
63
64                 if($txt = prepare_text($a->profile['music'])) $profile['music'] = array( t('Musical interests:'), $txt);
65                 
66                 if($txt = prepare_text($a->profile['book'])) $profile['book'] = array( t('Books, literature:'), $txt);
67
68                 if($txt = prepare_text($a->profile['tv'])) $profile['tv'] = array( t('Television:'), $txt);
69
70                 if($txt = prepare_text($a->profile['film'])) $profile['film'] = array( t('Film/dance/culture/entertainment:'), $txt);
71
72                 if($txt = prepare_text($a->profile['romance'])) $profile['romance'] = array( t('Love/Romance:'), $txt);
73                 
74                 if($txt = prepare_text($a->profile['work'])) $profile['work'] = array( t('Work/employment:'), $txt);
75
76                 if($txt = prepare_text($a->profile['education'])) $profile['education'] = array( t('School/education:'), $txt );
77
78         return replace_macros($tpl, array(
79             '$title' => t('Profile'),
80             '$profile' => $profile,
81         ));
82     }
83
84         return '';
85 }