Removed now ununsed functions
This commit is contained in:
parent
b026901dbc
commit
88d406004c
|
@ -22,9 +22,7 @@
|
||||||
namespace Friendica\Model;
|
namespace Friendica\Model;
|
||||||
|
|
||||||
use Exception;
|
use Exception;
|
||||||
use Friendica\Core\Protocol;
|
|
||||||
use Friendica\Database\DBA;
|
use Friendica\Database\DBA;
|
||||||
use Friendica\Util\DateTimeFormat;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This class handles GlobalContact related functions
|
* This class handles GlobalContact related functions
|
||||||
|
@ -152,57 +150,4 @@ class GContact
|
||||||
/// @TODO Check all calling-findings of this function if they properly use DBA::isResult()
|
/// @TODO Check all calling-findings of this function if they properly use DBA::isResult()
|
||||||
return $r;
|
return $r;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @param integer $uid user
|
|
||||||
* @param integer $cid cid
|
|
||||||
* @return integer
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public static function countAllFriends($uid, $cid)
|
|
||||||
{
|
|
||||||
$r = q(
|
|
||||||
"SELECT count(*) as `total`
|
|
||||||
FROM `glink` INNER JOIN `gcontact` on `glink`.`gcid` = `gcontact`.`id`
|
|
||||||
where `glink`.`cid` = %d and `glink`.`uid` = %d AND
|
|
||||||
NOT `gcontact`.`failed`",
|
|
||||||
intval($cid),
|
|
||||||
intval($uid)
|
|
||||||
);
|
|
||||||
|
|
||||||
if (DBA::isResult($r)) {
|
|
||||||
return $r[0]['total'];
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param integer $uid user
|
|
||||||
* @param integer $cid cid
|
|
||||||
* @param integer $start optional, default 0
|
|
||||||
* @param integer $limit optional, default 80
|
|
||||||
* @return array
|
|
||||||
* @throws Exception
|
|
||||||
*/
|
|
||||||
public static function allFriends($uid, $cid, $start = 0, $limit = 80)
|
|
||||||
{
|
|
||||||
$r = q(
|
|
||||||
"SELECT `gcontact`.*, `contact`.`id` AS `cid`
|
|
||||||
FROM `glink`
|
|
||||||
INNER JOIN `gcontact` on `glink`.`gcid` = `gcontact`.`id`
|
|
||||||
LEFT JOIN `contact` ON `contact`.`nurl` = `gcontact`.`nurl` AND `contact`.`uid` = %d
|
|
||||||
WHERE `glink`.`cid` = %d AND `glink`.`uid` = %d AND
|
|
||||||
NOT `gcontact`.`failed`
|
|
||||||
ORDER BY `gcontact`.`name` ASC LIMIT %d, %d ",
|
|
||||||
intval($uid),
|
|
||||||
intval($cid),
|
|
||||||
intval($uid),
|
|
||||||
intval($start),
|
|
||||||
intval($limit)
|
|
||||||
);
|
|
||||||
|
|
||||||
/// @TODO Check all calling-findings of this function if they properly use DBA::isResult()
|
|
||||||
return $r;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue