3 function crepair_post(&$a) {
7 $cid = (($a->argc > 1) ? intval($a->argv[1]) : 0);
10 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
21 $nick = ((x($_POST,'nick')) ? $_POST['nick'] : null);
22 $url = ((x($_POST,'url')) ? $_POST['url'] : null);
23 $request = ((x($_POST,'request')) ? $_POST['request'] : null);
24 $confirm = ((x($_POST,'confirm')) ? $_POST['confirm'] : null);
25 $notify = ((x($_POST,'notify')) ? $_POST['notify'] : null);
26 $poll = ((x($_POST,'poll')) ? $_POST['poll'] : null);
29 $r = q("UPDATE `contact` SET `nick` = '%s', `url` = '%s', `request` = '%s', `confirm` = '%s', `notify` = '%s', `poll` = '%s'
30 WHERE `id` = %d AND `uid` = %d LIMIT 1",
37 intval($contact['id']),
42 notice( t('Contact settings applied.') . EOL);
44 notice( t('Contact update failed.') . EOL);
51 function crepair_content(&$a) {
54 notice( t('Permission denied.') . EOL);
58 $cid = (($a->argc > 1) ? intval($a->argv[1]) : 0);
61 $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1",
68 notice( t('Contact not found.') . EOL);
74 $msg1 = t('Repair Contact Settings');
76 $msg2 = t('<strong>WARNING: This is highly advanced</strong> and if you enter incorrect information your communications with this contact will stop working.');
77 $msg3 = t('Please use your browser \'Back\' button <strong>now</strong> if you are uncertain what to do on this page.');
79 $o .= '<h2>' . $msg1 . '</h2>';
81 $o .= '<div class="error-message">' . $msg2 . EOL . EOL. $msg3 . '</div>';
83 $tpl = get_markup_template('crepair.tpl');
84 $o .= replace_macros($tpl, array(
85 '$label_name' => t('Name'),
86 '$label_nick' => t('Account Nickname'),
87 '$label_url' => t('Account URL'),
88 '$label_request' => t('Friend Request URL'),
89 '$label_confirm' => t('Friend Confirm URL'),
90 '$label_notify' => t('Notification Endpoint URL'),
91 '$label_poll' => t('Poll/Feed URL'),
92 '$contact_name' => $contact['name'],
93 '$contact_nick' => $contact['nick'],
94 '$contact_id' => $contact['id'],
95 '$contact_url' => $contact['url'],
96 '$request' => $contact['request'],
97 '$confirm' => $contact['confirm'],
98 '$notify' => $contact['notify'],
99 '$poll' => $contact['poll'],
100 '$lbl_submit' => t('Submit')