Update to Drupal 8.1.2. For more information, see https://www.drupal.org/project/drupal/releases/8.1.2
This commit is contained in:
parent
9eae24d844
commit
28556d630e
1322 changed files with 6699 additions and 2064 deletions
|
@ -113,7 +113,7 @@ function rdf_get_namespaces() {
|
|||
// namespace, do not use \Drupal::moduleHandler()->invokeAll().
|
||||
foreach (\Drupal::moduleHandler()->getImplementations('rdf_namespaces') as $module) {
|
||||
$function = $module . '_rdf_namespaces';
|
||||
foreach($function() as $prefix => $namespace) {
|
||||
foreach ($function() as $prefix => $namespace) {
|
||||
if (array_key_exists($prefix, $namespaces) && $namespace !== $namespaces[$prefix]) {
|
||||
throw new Exception(t('Tried to map @prefix to @namespace, but @prefix is already mapped to @orig_namespace.', array('@prefix' => $prefix, '@namespace' => $namespace, '@orig_namespace' => $namespaces[$prefix])));
|
||||
}
|
||||
|
@ -233,9 +233,12 @@ function rdf_comment_storage_load($comments) {
|
|||
// to optimize performance for websites that implement an entity cache.
|
||||
$created_mapping = rdf_get_mapping('comment', $comment->bundle())
|
||||
->getPreparedFieldMapping('created');
|
||||
/** @var \Drupal\comment\CommentInterface $comment*/
|
||||
$comment->rdf_data['date'] = rdf_rdfa_attributes($created_mapping, $comment->get('created')->first()->toArray());
|
||||
$entity = $comment->getCommentedEntity();
|
||||
$comment->rdf_data['entity_uri'] = $entity->url();
|
||||
// The current function is a storage level hook, so avoid to bubble
|
||||
// bubbleable metadata, because it can be outside of a render context.
|
||||
$comment->rdf_data['entity_uri'] = $entity->toUrl()->toString(TRUE)->getGeneratedUrl();
|
||||
if ($comment->hasParentComment()) {
|
||||
$comment->rdf_data['pid_uri'] = $comment->getParentComment()->url();
|
||||
}
|
||||
|
@ -265,7 +268,7 @@ function rdf_preprocess_html(&$variables) {
|
|||
if (!isset($variables['html_attributes']['prefix'])) {
|
||||
$variables['html_attributes']['prefix'] = array();
|
||||
}
|
||||
foreach(rdf_get_namespaces() as $prefix => $uri) {
|
||||
foreach (rdf_get_namespaces() as $prefix => $uri) {
|
||||
$variables['html_attributes']['prefix'][] = $prefix . ': ' . $uri . " ";
|
||||
}
|
||||
}
|
||||
|
|
Reference in a new issue