OPPG-376: Added api function that was removed in previous commit by Frode Petterson

namespaces
Svein-Tore Griff With 2013-07-03 14:22:00 +02:00
parent d1036e9a5a
commit 9d9b3bbc51
1 changed files with 19 additions and 1 deletions

View File

@ -102,7 +102,14 @@ H5P.fullScreen = function ($el, obj) {
};
/**
* Find the path to the content files base on the id of the content.
* Find the path to the content files based on the id of the content
*
* Also identifies and returns absolute paths
*
* @param string path
* Absolute path to a file, or relative path to a file in the content folder
* @param contentId
* Id of the content requesting a path
*/
H5P.getPath = function (path, contentId) {
if (path.substr(0, 7) === 'http://' || path.substr(0, 8) === 'https://') {
@ -112,6 +119,17 @@ H5P.getPath = function (path, contentId) {
return H5PIntegration.getContentPath(contentId) + path;
};
/**
* Find the path to the content files folder based on the id of the content
*
* @param contentId
* Id of the content requesting a path
*/
H5P.getContentPath = function (contentId) {
return H5PIntegration.getContentPath(contentId);
};
//
// Used from libraries to construct instances of other libraries' objects by
// name.