Add function documentation - refs BT#8441

1.9.x
Francis Gonzales 10 years ago
parent 7610baf413
commit 3524bc024f
  1. 5
      main/webservices/additional_webservices.php

@ -82,6 +82,10 @@ function wsConvertPpt($pptData)
}
}
/**
* @param $directoryPath
* @return bool
*/
function deleteDirectory($directoryPath)
{
$files = array_diff(scandir($directoryPath), array('.','..'));
@ -99,6 +103,7 @@ $options = array(
'uri' => $webPath,
'location' => $webCodePath . 'webservices/additional_webservices.php'
);
$soapServer = new SoapServer(NULL, $options);
$soapServer->addFunction('wsConvertPpt');
$soapServer->handle();
Loading…
Cancel
Save