streams/mod/online.php

12 lines
197 B
PHP
Raw Normal View History

2014-01-29 04:15:57 +00:00
<?php /** @file */
function online_init(&$a) {
$ret = array('result' => false);
if(argc() != 2)
json_return_and_die($ret);
$ret = get_online_status(argv(1));
json_return_and_die($ret);
}