]> git.mxchange.org Git - friendica.git/blob - mod/profiles.php
Merge branch 'master' of https://github.com/friendica/friendica
[friendica.git] / mod / profiles.php
1 <?php
2
3
4 function profiles_post(&$a) {
5
6         if(! local_user()) {
7                 notice( t('Permission denied.') . EOL);
8                 return;
9         }
10
11         $namechanged = false;
12
13         call_hooks('profile_post', $_POST);
14
15         if(($a->argc > 1) && ($a->argv[1] !== "new") && intval($a->argv[1])) {
16                 $orig = q("SELECT * FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1",
17                         intval($a->argv[1]),
18                         intval(local_user())
19                 );
20                 if(! count($orig)) {
21                         notice( t('Profile not found.') . EOL);
22                         return;
23                 }
24                 
25                 check_form_security_token_redirectOnErr('/profiles', 'profile_edit');
26                 
27                 $is_default = (($orig[0]['is-default']) ? 1 : 0);
28
29                 $profile_name = notags(trim($_POST['profile_name']));
30                 if(! strlen($profile_name)) {
31                         notify( t('Profile Name is required.') . EOL);
32                         return;
33                 }
34         
35                 $year = intval($_POST['year']);
36                 if($year < 1900 || $year > 2100 || $year < 0)
37                         $year = 0;
38                 $month = intval($_POST['month']);
39                         if(($month > 12) || ($month < 0))
40                                 $month = 0;
41                 $mtab = array(0,31,29,31,30,31,30,31,31,30,31,30,31);
42                 $day = intval($_POST['day']);
43                         if(($day > $mtab[$month]) || ($day < 0))
44                                 $day = 0;
45                 $dob = '0000-00-00';
46                 $dob = sprintf('%04d-%02d-%02d',$year,$month,$day);
47
48                         
49                 $name = notags(trim($_POST['name']));
50
51                 if($orig[0]['name'] != $name)
52                         $namechanged = true;
53
54
55                 $pdesc = notags(trim($_POST['pdesc']));
56                 $gender = notags(trim($_POST['gender']));
57                 $address = notags(trim($_POST['address']));
58                 $locality = notags(trim($_POST['locality']));
59                 $region = notags(trim($_POST['region']));
60                 $postal_code = notags(trim($_POST['postal_code']));
61                 $country_name = notags(trim($_POST['country_name']));
62                 $pub_keywords = notags(trim($_POST['pub_keywords']));
63                 $prv_keywords = notags(trim($_POST['prv_keywords']));
64                 $marital = notags(trim($_POST['marital']));
65                 $howlong = notags(trim($_POST['howlong']));
66
67                 $with = ((x($_POST,'with')) ? notags(trim($_POST['with'])) : '');
68
69                 if(! strlen($howlong))
70                         $howlong = '0000-00-00 00:00:00';
71                 else
72                         $howlong = datetime_convert(date_default_timezone_get(),'UTC',$howlong);
73  
74                 // linkify the relationship target if applicable
75
76                 $withchanged = false;
77
78                 if(strlen($with)) {
79                         if($with != strip_tags($orig[0]['with'])) {
80                                 $withchanged = true;
81                                 $prf = '';
82                                 $lookup = $with;
83                                 if(strpos($lookup,'@') === 0)
84                                         $lookup = substr($lookup,1);
85                                 $lookup = str_replace('_',' ', $lookup);
86                                 if(strpos($lookup,'@') || (strpos($lookup,'http://'))) {
87                                         $newname = $lookup;
88                                         $links = @lrdd($lookup);
89                                         if(count($links)) {
90                                                 foreach($links as $link) {
91                                                         if($link['@attributes']['rel'] === 'http://webfinger.net/rel/profile-page') {
92                                         $prf = $link['@attributes']['href'];
93                                                         }
94                                                 }
95                                         }
96                                 }
97                                 else {
98                                         $newname = $lookup;
99                                         if(strstr($lookup,' ')) {
100                                                 $r = q("SELECT * FROM `contact` WHERE `name` = '%s' AND `uid` = %d LIMIT 1",
101                                                         dbesc($newname),
102                                                         intval(local_user())
103                                                 );
104                                         }
105                                         else {
106                                                 $r = q("SELECT * FROM `contact` WHERE `nick` = '%s' AND `uid` = %d LIMIT 1",
107                                                         dbesc($lookup),
108                                                         intval(local_user())
109                                                 );
110                                         }
111                                         if(count($r)) {
112                                                 $prf = $r[0]['url'];
113                                                 $newname = $r[0]['name'];
114                                         }
115                                 }
116         
117                                 if($prf) {
118                                         $with = str_replace($lookup,'<a href="' . $prf . '">' . $newname        . '</a>', $with);
119                                         if(strpos($with,'@') === 0)
120                                                 $with = substr($with,1);
121                                 }
122                         }
123                         else
124                                 $with = $orig[0]['with'];
125                 }
126
127                 $sexual = notags(trim($_POST['sexual']));
128                 $homepage = notags(trim($_POST['homepage']));
129                 $hometown = notags(trim($_POST['hometown']));
130                 $politic = notags(trim($_POST['politic']));
131                 $religion = notags(trim($_POST['religion']));
132
133                 $likes = fix_mce_lf(escape_tags(trim($_POST['likes'])));
134                 $dislikes = fix_mce_lf(escape_tags(trim($_POST['dislikes'])));
135
136                 $about = fix_mce_lf(escape_tags(trim($_POST['about'])));
137                 $interest = fix_mce_lf(escape_tags(trim($_POST['interest'])));
138                 $contact = fix_mce_lf(escape_tags(trim($_POST['contact'])));
139                 $music = fix_mce_lf(escape_tags(trim($_POST['music'])));
140                 $book = fix_mce_lf(escape_tags(trim($_POST['book'])));
141                 $tv = fix_mce_lf(escape_tags(trim($_POST['tv'])));
142                 $film = fix_mce_lf(escape_tags(trim($_POST['film'])));
143                 $romance = fix_mce_lf(escape_tags(trim($_POST['romance'])));
144                 $work = fix_mce_lf(escape_tags(trim($_POST['work'])));
145                 $education = fix_mce_lf(escape_tags(trim($_POST['education'])));
146
147                 $hide_friends = (($_POST['hide-friends'] == 1) ? 1: 0);
148
149
150
151                 $changes = array();
152                 $value = '';
153                 if($is_default) {
154                         if($marital != $orig[0]['marital']) {
155                                 $changes[] = '[color=#ff0000]&hearts;[/color] ' . t('Marital Status');
156                                 $value = $marital;
157                         }
158                         if($withchanged) {
159                                 $changes[] = '[color=#ff0000]&hearts;[/color] ' . t('Romantic Partner');
160                                 $value = strip_tags($with);
161                         }
162                         if($likes != $orig[0]['likes']) {
163                                 $changes[] = t('Likes');
164                                 $value = $likes;
165                         }
166                         if($dislikes != $orig[0]['dislikes']) {
167                                 $changes[] = t('Dislikes');
168                                 $value = $dislikes;
169                         }
170                         if($work != $orig[0]['work']) {
171                                 $changes[] = t('Work/Employment');
172                         }
173                         if($religion != $orig[0]['religion']) {
174                                 $changes[] = t('Religion');
175                                 $value = $religion;
176                         }
177                         if($politic != $orig[0]['politic']) {
178                                 $changes[] = t('Political Views');
179                                 $value = $politic;
180                         }
181                         if($gender != $orig[0]['gender']) {
182                                 $changes[] = t('Gender');
183                                 $value = $gender;
184                         }
185                         if($sexual != $orig[0]['sexual']) {
186                                 $changes[] = t('Sexual Preference');
187                                 $value = $sexual;
188                         }
189                         if($homepage != $orig[0]['homepage']) {
190                                 $changes[] = t('Homepage');
191                                 $value = $homepage;
192                         }
193                         if($interest != $orig[0]['interest']) {
194                                 $changes[] = t('Interests');
195                                 $value = $interest;
196                         }
197                         if($address != $orig[0]['address']) {
198                                 $changes[] = t('Address');
199                                 // New address not sent in notifications, potential privacy issues
200                                 // in case this leaks to unintended recipients. Yes, it's in the public
201                                 // profile but that doesn't mean we have to broadcast it to everybody.
202                         }
203                         if($locality != $orig[0]['locality'] || $region != $orig[0]['region']
204                                 || $country_name != $orig[0]['country-name']) {
205                                 $changes[] = t('Location');
206                                 $comma1 = ((($locality) && ($region || $country_name)) ? ', ' : ' ');
207                                 $comma2 = (($region && $country_name) ? ', ' : '');
208                                 $value = $locality . $comma1 . $region . $comma2 . $country_name;
209                         }
210
211                         profile_activity($changes,$value);
212
213                 }                       
214                         
215                 $r = q("UPDATE `profile` 
216                         SET `profile-name` = '%s',
217                         `name` = '%s',
218                         `pdesc` = '%s',
219                         `gender` = '%s',
220                         `dob` = '%s',
221                         `address` = '%s',
222                         `locality` = '%s',
223                         `region` = '%s',
224                         `postal-code` = '%s',
225                         `country-name` = '%s',
226                         `marital` = '%s',
227                         `with` = '%s',
228                         `howlong` = '%s',
229                         `sexual` = '%s',
230                         `homepage` = '%s',
231                         `hometown` = '%s',
232                         `politic` = '%s',
233                         `religion` = '%s',
234                         `pub_keywords` = '%s',
235                         `prv_keywords` = '%s',
236                         `likes` = '%s',
237                         `dislikes` = '%s',
238                         `about` = '%s',
239                         `interest` = '%s',
240                         `contact` = '%s',
241                         `music` = '%s',
242                         `book` = '%s',
243                         `tv` = '%s',
244                         `film` = '%s',
245                         `romance` = '%s',
246                         `work` = '%s',
247                         `education` = '%s',
248                         `hide-friends` = %d
249                         WHERE `id` = %d AND `uid` = %d LIMIT 1",
250                         dbesc($profile_name),
251                         dbesc($name),
252                         dbesc($pdesc),
253                         dbesc($gender),
254                         dbesc($dob),
255                         dbesc($address),
256                         dbesc($locality),
257                         dbesc($region),
258                         dbesc($postal_code),
259                         dbesc($country_name),
260                         dbesc($marital),
261                         dbesc($with),
262                         dbesc($howlong),
263                         dbesc($sexual),
264                         dbesc($homepage),
265                         dbesc($hometown),
266                         dbesc($politic),
267                         dbesc($religion),
268                         dbesc($pub_keywords),
269                         dbesc($prv_keywords),
270                         dbesc($likes),
271                         dbesc($dislikes),
272                         dbesc($about),
273                         dbesc($interest),
274                         dbesc($contact),
275                         dbesc($music),
276                         dbesc($book),
277                         dbesc($tv),
278                         dbesc($film),
279                         dbesc($romance),
280                         dbesc($work),
281                         dbesc($education),
282                         intval($hide_friends),
283                         intval($a->argv[1]),
284                         intval(local_user())
285                 );
286
287                 if($r)
288                         info( t('Profile updated.') . EOL);
289
290
291                 if($namechanged && $is_default) {
292                         $r = q("UPDATE `contact` SET `name-date` = '%s' WHERE `self` = 1 AND `uid` = %d LIMIT 1",
293                                 dbesc(datetime_convert()),
294                                 intval(local_user())
295                         );
296                 }
297
298                 if($is_default) {
299                         // Update global directory in background
300                         $url = $_SESSION['my_url'];
301                         if($url && strlen(get_config('system','directory_submit_url')))
302                                 proc_run('php',"include/directory.php","$url");
303
304                         require_once('include/profile_update.php');
305                         profile_change();
306                 }
307         }
308 }
309
310
311 function profile_activity($changed, $value) {
312         $a = get_app();
313
314         if(! local_user() || ! is_array($changed) || ! count($changed))
315                 return;
316
317         if($a->user['hidewall'] || get_config('system','block_public'))
318                 return;
319
320         if(! get_pconfig(local_user(),'system','post_profilechange'))
321                 return;
322
323         require_once('include/items.php');
324
325         $self = q("SELECT * FROM `contact` WHERE `self` = 1 AND `uid` = %d LIMIT 1",
326                 intval(local_user())
327         );
328
329         if(! count($self))
330                 return;
331
332         $arr = array();
333         $arr['uri'] = $arr['parent-uri'] = item_new_uri($a->get_hostname(), local_user()); 
334         $arr['uid'] = local_user();
335         $arr['contact-id'] = $self[0]['id'];
336         $arr['wall'] = 1;
337         $arr['type'] = 'wall';
338         $arr['gravity'] = 0;
339         $arr['origin'] = 1;
340         $arr['author-name'] = $arr['owner-name'] = $self[0]['name'];
341         $arr['author-link'] = $arr['owner-link'] = $self[0]['url'];
342         $arr['author-avatar'] = $arr['owner-avatar'] = $self[0]['thumb'];
343         $arr['verb'] = ACTIVITY_UPDATE;
344         $arr['object-type'] = ACTIVITY_OBJ_PROFILE;
345                                 
346         $A = '[url=' . $self[0]['url'] . ']' . $self[0]['name'] . '[/url]';
347
348
349         $changes = '';
350         $t = count($changed);
351         $z = 0;
352         foreach($changed as $ch) {
353                 if(strlen($changes)) {
354                         if ($z == ($t - 1))
355                                 $changes .= t(' and ');
356                         else
357                                 $changes .= ', ';
358                 }
359                 $z ++;
360                 $changes .= $ch;
361         }
362
363         $prof = '[url=' . $self[0]['url'] . '?tab=profile' . ']' . t('public profile') . '[/url]';      
364
365         if($t == 1 && strlen($value)) {
366                 $message = sprintf( t('%1$s changed %2$s to &ldquo;%3$s&rdquo;'), $A, $changes, $value);
367                 $message .= "\n\n" . sprintf( t(' - Visit %1$s\'s %2$s'), $A, $prof);
368         }
369         else
370                 $message =      sprintf( t('%1$s has an updated %2$s, changing %3$s.'), $A, $prof, $changes);
371  
372
373         $arr['body'] = $message;  
374
375         $arr['object'] = '<object><type>' . ACTIVITY_OBJ_PROFILE . '</type><title>' . $self[0]['name'] . '</title>'
376         . '<id>' . $self[0]['url'] . '/' . $self[0]['name'] . '</id>';
377         $arr['object'] .= '<link>' . xmlify('<link rel="alternate" type="text/html" href="' . $self[0]['url'] . '?tab=profile' . '" />' . "\n");
378         $arr['object'] .= xmlify('<link rel="photo" type="image/jpeg" href="' . $self[0]['thumb'] . '" />' . "\n");
379         $arr['object'] .= '</link></object>' . "\n";
380         $arr['last-child'] = 1;
381
382         $arr['allow_cid'] = $a->user['allow_cid'];
383         $arr['allow_gid'] = $a->user['allow_gid'];
384         $arr['deny_cid']  = $a->user['deny_cid'];
385         $arr['deny_gid']  = $a->user['deny_gid'];
386
387         $i = item_store($arr);
388         if($i)
389                 proc_run('php',"include/notifier.php","activity","$i");
390
391 }
392
393
394 function profiles_content(&$a) {
395
396         $o = '';
397         nav_set_selected('profiles');
398
399         if(! local_user()) {
400                 notice( t('Permission denied.') . EOL);
401                 return;
402         }
403
404         if(($a->argc > 2) && ($a->argv[1] === "drop") && intval($a->argv[2])) {
405                 $r = q("SELECT * FROM `profile` WHERE `id` = %d AND `uid` = %d AND `is-default` = 0 LIMIT 1",
406                         intval($a->argv[2]),
407                         intval(local_user())
408                 );
409                 if(! count($r)) {
410                         notice( t('Profile not found.') . EOL);
411                         goaway($a->get_baseurl(true) . '/profiles');
412                         return; // NOTREACHED
413                 }
414                 
415                 check_form_security_token_redirectOnErr('/profiles', 'profile_drop', 't');
416
417                 // move every contact using this profile as their default to the user default
418
419                 $r = q("UPDATE `contact` SET `profile-id` = (SELECT `profile`.`id` AS `profile-id` FROM `profile` WHERE `profile`.`is-default` = 1 AND `profile`.`uid` = %d LIMIT 1) WHERE `profile-id` = %d AND `uid` = %d ",
420                         intval(local_user()),
421                         intval($a->argv[2]),
422                         intval(local_user())
423                 );
424                 $r = q("DELETE FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1",
425                         intval($a->argv[2]),
426                         intval(local_user())
427                 );
428                 if($r)
429                         info( t('Profile deleted.') . EOL);
430
431                 goaway($a->get_baseurl(true) . '/profiles');
432                 return; // NOTREACHED
433         }
434
435
436
437
438
439         if(($a->argc > 1) && ($a->argv[1] === 'new')) {
440                 
441                 check_form_security_token_redirectOnErr('/profiles', 'profile_new', 't');
442
443                 $r0 = q("SELECT `id` FROM `profile` WHERE `uid` = %d",
444                         intval(local_user()));
445                 $num_profiles = count($r0);
446
447                 $name = t('Profile-') . ($num_profiles + 1);
448
449                 $r1 = q("SELECT `name`, `photo`, `thumb` FROM `profile` WHERE `uid` = %d AND `is-default` = 1 LIMIT 1",
450                         intval(local_user()));
451                 
452                 $r2 = q("INSERT INTO `profile` (`uid` , `profile-name` , `name`, `photo`, `thumb`)
453                         VALUES ( %d, '%s', '%s', '%s', '%s' )",
454                         intval(local_user()),
455                         dbesc($name),
456                         dbesc($r1[0]['name']),
457                         dbesc($r1[0]['photo']),
458                         dbesc($r1[0]['thumb'])
459                 );
460
461                 $r3 = q("SELECT `id` FROM `profile` WHERE `uid` = %d AND `profile-name` = '%s' LIMIT 1",
462                         intval(local_user()),
463                         dbesc($name)
464                 );
465
466                 info( t('New profile created.') . EOL);
467                 if(count($r3) == 1)
468                         goaway($a->get_baseurl(true) . '/profiles/' . $r3[0]['id']);
469                 
470                 goaway($a->get_baseurl(true) . '/profiles');
471         } 
472
473         if(($a->argc > 2) && ($a->argv[1] === 'clone')) {
474                 
475                 check_form_security_token_redirectOnErr('/profiles', 'profile_clone', 't');
476
477                 $r0 = q("SELECT `id` FROM `profile` WHERE `uid` = %d",
478                         intval(local_user()));
479                 $num_profiles = count($r0);
480
481                 $name = t('Profile-') . ($num_profiles + 1);
482                 $r1 = q("SELECT * FROM `profile` WHERE `uid` = %d AND `id` = %d LIMIT 1",
483                         intval(local_user()),
484                         intval($a->argv[2])
485                 );
486                 if(! count($r1)) {
487                         notice( t('Profile unavailable to clone.') . EOL);
488                         return;
489                 }
490                 unset($r1[0]['id']);
491                 $r1[0]['is-default'] = 0;
492                 $r1[0]['publish'] = 0;  
493                 $r1[0]['net-publish'] = 0;      
494                 $r1[0]['profile-name'] = dbesc($name);
495
496                 dbesc_array($r1[0]);
497
498                 $r2 = dbq("INSERT INTO `profile` (`" 
499                         . implode("`, `", array_keys($r1[0])) 
500                         . "`) VALUES ('" 
501                         . implode("', '", array_values($r1[0])) 
502                         . "')" );
503
504                 $r3 = q("SELECT `id` FROM `profile` WHERE `uid` = %d AND `profile-name` = '%s' LIMIT 1",
505                         intval(local_user()),
506                         dbesc($name)
507                 );
508                 info( t('New profile created.') . EOL);
509                 if(count($r3) == 1)
510                         goaway($a->get_baseurl(true) . '/profiles/' . $r3[0]['id']);
511                 
512                 goaway($a->get_baseurl(true) . '/profiles');
513                 
514                 return; // NOTREACHED
515         }
516
517
518         if(($a->argc > 1) && (intval($a->argv[1]))) {
519                 $r = q("SELECT * FROM `profile` WHERE `id` = %d AND `uid` = %d LIMIT 1",
520                         intval($a->argv[1]),
521                         intval(local_user())
522                 );
523                 if(! count($r)) {
524                         notice( t('Profile not found.') . EOL);
525                         return;
526                 }
527
528                 profile_load($a,$a->user['nickname'],$r[0]['id']);
529
530                 require_once('include/profile_selectors.php');
531
532
533                 $editselect = 'textareas';
534                 if(intval(get_pconfig(local_user(),'system','plaintext')))
535                         $editselect = 'none';
536
537                 $a->page['htmlhead'] .= replace_macros(get_markup_template('profed_head.tpl'), array(
538                         '$baseurl' => $a->get_baseurl(true),
539                         '$editselect' => $editselect,
540                 ));
541
542
543                 $opt_tpl = get_markup_template("profile-hide-friends.tpl");
544                 $hide_friends = replace_macros($opt_tpl,array(
545                         '$desc' => t('Hide your contact/friend list from viewers of this profile?'),
546                         '$yes_str' => t('Yes'),
547                         '$no_str' => t('No'),
548                         '$yes_selected' => (($r[0]['hide-friends']) ? " checked=\"checked\" " : ""),
549                         '$no_selected' => (($r[0]['hide-friends'] == 0) ? " checked=\"checked\" " : "")
550                 ));
551
552                 $a->page['htmlhead'] .= "<script type=\"text/javascript\" src=\"js/country.js\" ></script>";
553
554
555
556
557
558                 $f = get_config('system','birthday_input_format');
559                 if(! $f)
560                         $f = 'ymd';
561
562                 $is_default = (($r[0]['is-default']) ? 1 : 0);
563                 $tpl = get_markup_template("profile_edit.tpl");
564                 $o .= replace_macros($tpl,array(
565                         '$form_security_token' => get_form_security_token("profile_edit"),
566                         '$profile_clone_link' => 'profiles/clone/' . $r[0]['id'] . '?t=' . get_form_security_token("profile_clone"),
567                         '$profile_drop_link' => 'profiles/drop/' . $r[0]['id'] . '?t=' . get_form_security_token("profile_drop"),
568                         '$banner' => t('Edit Profile Details'),
569                         '$submit' => t('Submit'),
570                         '$viewprof' => t('View this profile'),
571                         '$cr_prof' => t('Create a new profile using these settings'),
572                         '$cl_prof' => t('Clone this profile'),
573                         '$del_prof' => t('Delete this profile'),
574                         '$lbl_profname' => t('Profile Name:'),
575                         '$lbl_fullname' => t('Your Full Name:'),
576                         '$lbl_title' => t('Title/Description:'),
577                         '$lbl_gender' => t('Your Gender:'),
578                         '$lbl_bd' => sprintf( t("Birthday \x28%s\x29:"),datesel_format($f)),
579                         '$lbl_address' => t('Street Address:'),
580                         '$lbl_city' => t('Locality/City:'),
581                         '$lbl_zip' => t('Postal/Zip Code:'),
582                         '$lbl_country' => t('Country:'),
583                         '$lbl_region' => t('Region/State:'),
584                         '$lbl_marital' => t('<span class="heart">&hearts;</span> Marital Status:'),
585                         '$lbl_with' => t("Who: \x28if applicable\x29"),
586                         '$lbl_ex1' => t('Examples: cathy123, Cathy Williams, cathy@example.com'),
587                         '$lbl_howlong' => t('Since [date]:'),
588                         '$lbl_sexual' => t('Sexual Preference:'),
589                         '$lbl_homepage' => t('Homepage URL:'),
590                         '$lbl_hometown' => t('Hometown:'),
591                         '$lbl_politic' => t('Political Views:'),
592                         '$lbl_religion' => t('Religious Views:'),
593                         '$lbl_pubkey' => t('Public Keywords:'),
594                         '$lbl_prvkey' => t('Private Keywords:'),
595                         '$lbl_likes' => t('Likes:'),
596                         '$lbl_dislikes' => t('Dislikes:'),
597                         '$lbl_ex2' => t('Example: fishing photography software'),
598                         '$lbl_pubdsc' => t("\x28Used for suggesting potential friends, can be seen by others\x29"),
599                         '$lbl_prvdsc' => t("\x28Used for searching profiles, never shown to others\x29"),
600                         '$lbl_about' => t('Tell us about yourself...'),
601                         '$lbl_hobbies' => t('Hobbies/Interests'),
602                         '$lbl_social' => t('Contact information and Social Networks'),
603                         '$lbl_music' => t('Musical interests'),
604                         '$lbl_book' => t('Books, literature'),
605                         '$lbl_tv' => t('Television'),
606                         '$lbl_film' => t('Film/dance/culture/entertainment'),
607                         '$lbl_love' => t('Love/romance'),
608                         '$lbl_work' => t('Work/employment'),
609                         '$lbl_school' => t('School/education'),
610                         '$disabled' => (($is_default) ? 'onclick="return false;" style="color: #BBBBFF;"' : ''),
611                         '$baseurl' => $a->get_baseurl(true),
612                         '$profile_id' => $r[0]['id'],
613                         '$profile_name' => $r[0]['profile-name'],
614                         '$default' => (($is_default) ? '<p id="profile-edit-default-desc">' . t('This is your <strong>public</strong> profile.<br />It <strong>may</strong> be visible to anybody using the internet.') . '</p>' : ""),
615                         '$name' => $r[0]['name'],
616                         '$pdesc' => $r[0]['pdesc'],
617                         '$dob' => dob($r[0]['dob']),
618                         '$hide_friends' => $hide_friends,
619                         '$address' => $r[0]['address'],
620                         '$locality' => $r[0]['locality'],
621                         '$region' => $r[0]['region'],
622                         '$postal_code' => $r[0]['postal-code'],
623                         '$country_name' => $r[0]['country-name'],
624                         '$age' => ((intval($r[0]['dob'])) ? '(' . t('Age: ') . age($r[0]['dob'],$a->user['timezone'],$a->user['timezone']) . ')' : ''),
625                         '$gender' => gender_selector($r[0]['gender']),
626                         '$marital' => marital_selector($r[0]['marital']),
627                         '$with' => strip_tags($r[0]['with']),
628                         '$howlong' => ($r[0]['howlong'] === '0000-00-00 00:00:00' ? '' : datetime_convert('UTC',date_default_timezone_get(),$r[0]['howlong'])),
629                         '$sexual' => sexpref_selector($r[0]['sexual']),
630                         '$about' => $r[0]['about'],
631                         '$homepage' => $r[0]['homepage'],
632                         '$hometown' => $r[0]['hometown'],
633                         '$politic' => $r[0]['politic'],
634                         '$religion' => $r[0]['religion'],
635                         '$pub_keywords' => $r[0]['pub_keywords'],
636                         '$prv_keywords' => $r[0]['prv_keywords'],
637                         '$likes' => $r[0]['likes'],
638                         '$dislikes' => $r[0]['dislikes'],
639                         '$music' => $r[0]['music'],
640                         '$book' => $r[0]['book'],
641                         '$tv' => $r[0]['tv'],
642                         '$film' => $r[0]['film'],
643                         '$interest' => $r[0]['interest'],
644                         '$romance' => $r[0]['romance'],
645                         '$work' => $r[0]['work'],
646                         '$education' => $r[0]['education'],
647                         '$contact' => $r[0]['contact']
648                 ));
649
650                 $arr = array('profile' => $r[0], 'entry' => $o);
651                 call_hooks('profile_edit', $arr);
652
653                 return $o;
654         }
655         else {
656
657                 $r = q("SELECT * FROM `profile` WHERE `uid` = %d",
658                         local_user());
659                 if(count($r)) {
660
661                         $tpl_header = get_markup_template('profile_listing_header.tpl');
662                         $o .= replace_macros($tpl_header,array(
663                                 '$header' => t('Edit/Manage Profiles'),
664                                 '$chg_photo' => t('Change profile photo'),
665                                 '$cr_new' => t('Create New Profile'),
666                                 '$cr_new_link' => 'profiles/new?t=' . get_form_security_token("profile_new")
667                         ));
668
669
670                         $tpl = get_markup_template('profile_entry.tpl');
671
672                         foreach($r as $rr) {
673                                 $o .= replace_macros($tpl, array(
674                                         '$photo' => $a->get_cached_avatar_image($rr['thumb']),
675                                         '$id' => $rr['id'],
676                                         '$alt' => t('Profile Image'),
677                                         '$profile_name' => $rr['profile-name'],
678                                         '$visible' => (($rr['is-default']) ? '<strong>' . t('visible to everybody') . '</strong>' 
679                                                 : '<a href="' . $a->get_baseurl(true) . '/profperm/' . $rr['id'] . '" />' . t('Edit visibility') . '</a>')
680                                 ));
681                         }
682                 }
683                 return $o;
684         }
685
686 }