php-mpos/include/pages/api/getcurrentworkers.inc.php
2015-04-26 20:19:50 -05:00

15 lines
369 B
PHP

<?php
$defflip = (!cfip()) ? exit(header('HTTP/1.1 401 Unauthorized')) : 1;
// Check if the API is activated
$api->isActive();
// Check user token
$user_id = $api->checkAccess($user->checkApiKey($_REQUEST['api_key']), @$_REQUEST['id']);
// Output JSON format
echo $api->get_json($worker->getCountAllActiveWorkers());
// Supress master template
$supress_master = 1;