mirror of
https://github.com/friendica/friendica
synced 2025-11-13 08:35:21 +01:00
more cleanup - start on ajax
This commit is contained in:
parent
c3fd5ed732
commit
ba8da761e6
11 changed files with 104 additions and 20 deletions
36
mod/ping.php
Normal file
36
mod/ping.php
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
<?php
|
||||
|
||||
|
||||
|
||||
function ping_init(&$a) {
|
||||
|
||||
if(! local_user())
|
||||
xml_status(0);
|
||||
|
||||
$r = q("SELECT COUNT(*) AS `total` FROM `item`
|
||||
WHERE `unseen` = 1 AND `uid` = %d",
|
||||
intval($_SESSION['uid'])
|
||||
);
|
||||
$network = $r[0]['total'];
|
||||
|
||||
$r = q("SELECT COUNT(*) AS `total` FROM `item`
|
||||
WHERE `unseen` = 1 AND `uid` = %d AND `type` != 'remote' ",
|
||||
intval($_SESSION['uid'])
|
||||
);
|
||||
$home = $r[0]['total'];
|
||||
|
||||
$r = q("SELECT COUNT(*) AS `total` FROM `intro`
|
||||
WHERE `uid` = %d AND `blocked` = 0 AND `ignore` = 0 ",
|
||||
intval($_SESSION['uid'])
|
||||
);
|
||||
$intro = $r[0]['total'];
|
||||
|
||||
// TODO
|
||||
$mail = 0;
|
||||
|
||||
header("Content-type: text/xml");
|
||||
echo "<?xml version=\"1.0\" encoding=\"UTF-8\" ?>\r\n<result><intro>$intro</intro><mail>$mail</mail><net>$network</net><home>$home</home></result>\r\n";
|
||||
|
||||
killme();
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue