X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Ffsuggest.php;h=66871653ddff3f00c3a01fbd156c2038f61c0738;hb=9665f4ed415d34cbcf09df8c6ca04882303e9544;hp=6b1cbd7533be8ca44f6e9ce19c32609cdbf74490;hpb=3c97a6703cd5a743fc9339f52996bcb1eb436ef0;p=friendica.git diff --git a/mod/fsuggest.php b/mod/fsuggest.php index 6b1cbd7533..4f432d840a 100644 --- a/mod/fsuggest.php +++ b/mod/fsuggest.php @@ -1,14 +1,24 @@ argc != 2) + if ($a->argc != 2) { return; + } $contact_id = intval($a->argv[1]); @@ -16,8 +26,8 @@ function fsuggest_post(&$a) { intval($contact_id), intval(local_user()) ); - if(! count($r)) { - notice( t('Contact not found.') . EOL); + if (! DBM::is_result($r)) { + notice(L10n::t('Contact not found.') . EOL); return; } $contact = $r[0]; @@ -28,83 +38,80 @@ function fsuggest_post(&$a) { $note = escape_tags(trim($_POST['note'])); - if($new_contact) { + if ($new_contact) { $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1", intval($new_contact), intval(local_user()) ); - if(count($r)) { - + if (DBM::is_result($r)) { $x = q("INSERT INTO `fsuggest` ( `uid`,`cid`,`name`,`url`,`request`,`photo`,`note`,`created`) VALUES ( %d, %d, '%s','%s','%s','%s','%s','%s')", intval(local_user()), intval($contact_id), - dbesc($r[0]['name']), - dbesc($r[0]['url']), - dbesc($r[0]['request']), - dbesc($r[0]['photo']), - dbesc($hash), - dbesc(datetime_convert()) + dbesc($r[0]['name']), + dbesc($r[0]['url']), + dbesc($r[0]['request']), + dbesc($r[0]['photo']), + dbesc($hash), + dbesc(DateTimeFormat::utcNow()) ); $r = q("SELECT `id` FROM `fsuggest` WHERE `note` = '%s' AND `uid` = %d LIMIT 1", dbesc($hash), intval(local_user()) ); - if(count($r)) { + if (DBM::is_result($r)) { $fsuggest_id = $r[0]['id']; q("UPDATE `fsuggest` SET `note` = '%s' WHERE `id` = %d AND `uid` = %d", dbesc($note), intval($fsuggest_id), intval(local_user()) ); - proc_run('php', 'include/notifier.php', 'suggest' , $fsuggest_id); + Worker::add(PRIORITY_HIGH, 'Notifier', 'suggest', $fsuggest_id); } - info( t('Friend suggestion sent.') . EOL); + info(L10n::t('Friend suggestion sent.') . EOL); } - } - - } - - -function fsuggest_content(&$a) { - - require_once('include/acl_selectors.php'); - - if(! local_user()) { - notice( t('Permission denied.') . EOL); +function fsuggest_content(App $a) +{ + if (! local_user()) { + notice(L10n::t('Permission denied.') . EOL); return; } - if($a->argc != 2) + if ($a->argc != 2) { return; + } $contact_id = intval($a->argv[1]); - $r = q("SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1", + $r = q( + "SELECT * FROM `contact` WHERE `id` = %d AND `uid` = %d LIMIT 1", intval($contact_id), intval(local_user()) ); - if(! count($r)) { - notice( t('Contact not found.') . EOL); + if (! DBM::is_result($r)) { + notice(L10n::t('Contact not found.') . EOL); return; } $contact = $r[0]; - $o = '

' . t('Suggest Friends') . '

'; + $o = '

' . L10n::t('Suggest Friends') . '

'; - $o .= '
' . sprintf( t('Suggest a friend for %s'), $contact['name']) . '
'; + $o .= '
' . L10n::t('Suggest a friend for %s', $contact['name']) . '
'; $o .= '
'; - $o .= contact_selector('suggest','suggest-select', false, - array('size' => 4, 'exclude' => $contact_id, 'networks' => 'DFRN_ONLY', 'single' => true)); + $o .= ACL::getSuggestContactSelectHTML( + 'suggest', + 'suggest-select', + ['size' => 4, 'exclude' => $contact_id, 'networks' => 'DFRN_ONLY', 'single' => true] + ); - $o .= '
'; + $o .= '
'; $o .= '
'; return $o;