Ejemplo n.º 1
0
 function downloadedDocumentation()
 {
     $json = getJSONobj();
     $document_id = '';
     if (isset($_REQUEST['document_id'])) {
         $document_id = nl2br($_REQUEST['document_id']);
     }
     $GLOBALS['log']->debug("Downloading Document: " . $document_id);
     PackageManagerComm::downloadedDocumentation($document_id);
     echo 'result = ' . $json->encode(array('result' => 'true'));
 }