mirror of
https://github.com/friendica/friendica
synced 2025-04-24 07:10:11 +00:00
Revert "Coding convention applied - part 1"
This commit is contained in:
parent
9c2c483996
commit
7b352f3f74
181 changed files with 3507 additions and 4338 deletions
|
@ -33,7 +33,7 @@ class NotificationsManager {
|
|||
*/
|
||||
private function _set_extra($notes) {
|
||||
$rets = array();
|
||||
foreach ($notes as $n) {
|
||||
foreach($notes as $n) {
|
||||
$local_time = datetime_convert('UTC',date_default_timezone_get(),$n['date']);
|
||||
$n['timestamp'] = strtotime($local_time);
|
||||
$n['date_rel'] = relative_date($n['date']);
|
||||
|
@ -58,7 +58,7 @@ class NotificationsManager {
|
|||
public function getAll($filter = array(), $order="-date", $limit="") {
|
||||
$filter_str = array();
|
||||
$filter_sql = "";
|
||||
foreach ($filter as $column => $value) {
|
||||
foreach($filter as $column => $value) {
|
||||
$filter_str[] = sprintf("`%s` = '%s'", $column, dbesc($value));
|
||||
}
|
||||
if (count($filter_str)>0) {
|
||||
|
@ -67,7 +67,7 @@ class NotificationsManager {
|
|||
|
||||
$aOrder = explode(" ", $order);
|
||||
$asOrder = array();
|
||||
foreach ($aOrder as $o) {
|
||||
foreach($aOrder as $o) {
|
||||
$dir = "asc";
|
||||
if ($o[0]==="-") {
|
||||
$dir = "desc";
|
||||
|
@ -81,7 +81,7 @@ class NotificationsManager {
|
|||
}
|
||||
$order_sql = implode(", ", $asOrder);
|
||||
|
||||
if ($limit!="")
|
||||
if($limit!="")
|
||||
$limit = " LIMIT ".$limit;
|
||||
|
||||
$r = q("SELECT * FROM `notify` WHERE `uid` = %d $filter_sql ORDER BY $order_sql $limit",
|
||||
|
@ -369,7 +369,7 @@ class NotificationsManager {
|
|||
private function networkTotal($seen = 0) {
|
||||
$sql_seen = "";
|
||||
|
||||
if ($seen === 0)
|
||||
if($seen === 0)
|
||||
$sql_seen = " AND `item`.`unseen` = 1 ";
|
||||
|
||||
$r = q("SELECT COUNT(*) AS `total`
|
||||
|
@ -406,7 +406,7 @@ class NotificationsManager {
|
|||
$notifs = array();
|
||||
$sql_seen = "";
|
||||
|
||||
if ($seen === 0)
|
||||
if($seen === 0)
|
||||
$sql_seen = " AND `item`.`unseen` = 1 ";
|
||||
|
||||
|
||||
|
@ -445,7 +445,7 @@ class NotificationsManager {
|
|||
private function systemTotal($seen = 0) {
|
||||
$sql_seen = "";
|
||||
|
||||
if ($seen === 0)
|
||||
if($seen === 0)
|
||||
$sql_seen = " AND `seen` = 0 ";
|
||||
|
||||
$r = q("SELECT COUNT(*) AS `total` FROM `notify` WHERE `uid` = %d $sql_seen",
|
||||
|
@ -478,7 +478,7 @@ class NotificationsManager {
|
|||
$notifs = array();
|
||||
$sql_seen = "";
|
||||
|
||||
if ($seen === 0)
|
||||
if($seen === 0)
|
||||
$sql_seen = " AND `seen` = 0 ";
|
||||
|
||||
$r = q("SELECT `id`, `url`, `photo`, `msg`, `date`, `seen` FROM `notify`
|
||||
|
@ -530,7 +530,7 @@ class NotificationsManager {
|
|||
$sql_seen = "";
|
||||
$sql_extra = $this->_personal_sql_extra();
|
||||
|
||||
if ($seen === 0)
|
||||
if($seen === 0)
|
||||
$sql_seen = " AND `item`.`unseen` = 1 ";
|
||||
|
||||
$r = q("SELECT COUNT(*) AS `total`
|
||||
|
@ -569,7 +569,7 @@ class NotificationsManager {
|
|||
$notifs = array();
|
||||
$sql_seen = "";
|
||||
|
||||
if ($seen === 0)
|
||||
if($seen === 0)
|
||||
$sql_seen = " AND `item`.`unseen` = 1 ";
|
||||
|
||||
$r = q("SELECT `item`.`id`,`item`.`parent`, `item`.`verb`, `item`.`author-name`, `item`.`unseen`,
|
||||
|
@ -608,7 +608,7 @@ class NotificationsManager {
|
|||
private function homeTotal($seen = 0) {
|
||||
$sql_seen = "";
|
||||
|
||||
if ($seen === 0)
|
||||
if($seen === 0)
|
||||
$sql_seen = " AND `item`.`unseen` = 1 ";
|
||||
|
||||
$r = q("SELECT COUNT(*) AS `total` FROM `item`
|
||||
|
@ -644,7 +644,7 @@ class NotificationsManager {
|
|||
$notifs = array();
|
||||
$sql_seen = "";
|
||||
|
||||
if ($seen === 0)
|
||||
if($seen === 0)
|
||||
$sql_seen = " AND `item`.`unseen` = 1 ";
|
||||
|
||||
$r = q("SELECT `item`.`id`,`item`.`parent`, `item`.`verb`, `item`.`author-name`, `item`.`unseen`,
|
||||
|
@ -682,7 +682,7 @@ class NotificationsManager {
|
|||
private function introTotal($all = false) {
|
||||
$sql_extra = "";
|
||||
|
||||
if (!$all)
|
||||
if(!$all)
|
||||
$sql_extra = " AND `ignore` = 0 ";
|
||||
|
||||
$r = q("SELECT COUNT(*) AS `total` FROM `intro`
|
||||
|
@ -716,7 +716,7 @@ class NotificationsManager {
|
|||
$notifs = array();
|
||||
$sql_extra = "";
|
||||
|
||||
if (!$all)
|
||||
if(!$all)
|
||||
$sql_extra = " AND `ignore` = 0 ";
|
||||
|
||||
/// @todo Fetch contact details by "get_contact_details_by_url" instead of queries to contact, fcontact and gcontact
|
||||
|
@ -756,12 +756,12 @@ class NotificationsManager {
|
|||
private function formatIntros($intros) {
|
||||
$knowyou = '';
|
||||
|
||||
foreach ($intros as $it) {
|
||||
foreach($intros as $it) {
|
||||
// There are two kind of introduction. Contacts suggested by other contacts and normal connection requests.
|
||||
// We have to distinguish between these two because they use different data.
|
||||
|
||||
// Contact suggestions
|
||||
if ($it['fid']) {
|
||||
if($it['fid']) {
|
||||
|
||||
$return_addr = bin2hex($this->a->user['nickname'] . '@' . $this->a->get_hostname() . (($this->a->path) ? '/' . $this->a->path : ''));
|
||||
|
||||
|
@ -793,7 +793,7 @@ class NotificationsManager {
|
|||
$it['gnetwork'] = $ret["network"];
|
||||
|
||||
// Don't show these data until you are connected. Diaspora is doing the same.
|
||||
if ($it['gnetwork'] === NETWORK_DIASPORA) {
|
||||
if($it['gnetwork'] === NETWORK_DIASPORA) {
|
||||
$it['glocation'] = "";
|
||||
$it['gabout'] = "";
|
||||
$it['ggender'] = "";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue