mirror of
https://github.com/friendica/friendica
synced 2025-04-30 09:44:22 +02:00
Added another context
This commit is contained in:
parent
f59e11281c
commit
12d6080a48
2 changed files with 37 additions and 4 deletions
|
@ -46,12 +46,15 @@ class JsonLD
|
|||
case 'https://w3id.org/security/v1':
|
||||
$url = DI::basePath() . '/static/security-v1.jsonld';
|
||||
break;
|
||||
case 'https://w3id.org/identity/v1':
|
||||
$url = DI::basePath() . '/static/identity-v1.jsonld';
|
||||
break;
|
||||
case 'https://w3id.org/security/data-integrity/v1':
|
||||
$url = DI::basePath() . '/static/security-data-integrity-v1.jsonld';
|
||||
break;
|
||||
case 'https://w3id.org/security/multikey/v1':
|
||||
$url = DI::basePath() . '/static/security-multikey-v1.jsonld';
|
||||
break;
|
||||
case 'https://w3id.org/identity/v1':
|
||||
$url = DI::basePath() . '/static/identity-v1.jsonld';
|
||||
break;
|
||||
case 'https://www.w3.org/ns/activitystreams':
|
||||
$url = DI::basePath() . '/static/activitystreams.jsonld';
|
||||
break;
|
||||
|
@ -98,7 +101,7 @@ class JsonLD
|
|||
|
||||
$result = DI::cache()->get('documentLoader:' . $url);
|
||||
if (!is_null($result)) {
|
||||
return $result;
|
||||
//return $result;
|
||||
}
|
||||
|
||||
$data = jsonld_default_document_loader($url);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue