Guest User

Untitled

a guest
Jun 25th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. function naturetour_page_attachments_alter(array &$attachments){
  2. $uuid = \Drupal\block\Entity\Block::load('usefull')->getPlugin()->getDerivativeId();
  3. $block_content = \Drupal::service('entity.repository')->loadEntityByUuid('block_content', $uuid);
  4. if ($block_content) {
  5. $field_value = $block_content->field_something_item->value;
  6. $attachments['#attached']['drupalSettings']['naturetour']['custom']['something_item'] = $field_value;
  7. }
  8.  
  9. }
Add Comment
Please, Sign In to add comment