parent
29fd758bf5
commit
a0069235f1
|
@ -363,18 +363,22 @@ class H5PDefaultStorage implements \H5PFileStorage {
|
||||||
* content from the current temporary upload folder to the editor path.
|
* content from the current temporary upload folder to the editor path.
|
||||||
*
|
*
|
||||||
* @param string $source path to source directory
|
* @param string $source path to source directory
|
||||||
* @param string $target path of target directory. Defaults to editor path
|
* @param string $contentId Id of content
|
||||||
*
|
*
|
||||||
* @return object Object containing h5p json and content json data
|
* @return object Object containing h5p json and content json data
|
||||||
*/
|
*/
|
||||||
public function moveContentDirectory($source, $target = NULL) {
|
public function moveContentDirectory($source, $contentId = NULL) {
|
||||||
if ($source === NULL) {
|
if ($source === NULL) {
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($target === NULL) {
|
if ($contentId === NULL || $contentId === 0) {
|
||||||
$target = $this->getEditorPath();
|
$target = $this->getEditorPath();
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
// Use content folder
|
||||||
|
$target = "{$this->path}/content/{$contentId}";
|
||||||
|
}
|
||||||
|
|
||||||
$contentSource = $source . DIRECTORY_SEPARATOR . 'content';
|
$contentSource = $source . DIRECTORY_SEPARATOR . 'content';
|
||||||
$contentFiles = array_diff(scandir($contentSource), array('.','..', 'content.json'));
|
$contentFiles = array_diff(scandir($contentSource), array('.','..', 'content.json'));
|
||||||
|
|
|
@ -158,11 +158,11 @@ interface H5PFileStorage {
|
||||||
* content from the current temporary upload folder to the editor path.
|
* content from the current temporary upload folder to the editor path.
|
||||||
*
|
*
|
||||||
* @param string $source path to source directory
|
* @param string $source path to source directory
|
||||||
* @param string $target path of target directory. Defaults to editor path
|
* @param string $contentId Id of content
|
||||||
*
|
*
|
||||||
* @return object Object containing h5p json and content json data
|
* @return object Object containing h5p json and content json data
|
||||||
*/
|
*/
|
||||||
public function moveContentDirectory($source, $target = NULL);
|
public function moveContentDirectory($source, $contentId = NULL);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Checks to see if content has the given file.
|
* Checks to see if content has the given file.
|
||||||
|
|
Loading…
Reference in New Issue