Exemplo n.º 1
0
 public static function notFound()
 {
     if ($_SERVER['REQUEST_METHOD'] == 'GET') {
         $method = 'get';
     } elseif ($_SERVER['REQUEST_METHOD'] == 'PUT') {
         $method = 'put';
     } elseif ($_SERVER['REQUEST_METHOD'] == 'POST') {
         $method = 'post';
     } else {
         echo 'internal server error: method not supported';
         exit;
     }
     $format = self::readData($method, 'format', 'text', '');
     $txt = 'Invalid query, please check the syntax. API specifications are here:' . ' http://www.freedesktop.org/wiki/Specifications/open-collaboration-services. DEBUG OUTPUT:' . "\n";
     $txt .= OC_OCS::getDebugOutput();
     echo OC_OCS::generateXml($format, 'failed', 999, $txt);
 }