function media_test_oembed_preprocess_media_oembed_iframe

Same name and namespace in other branches
  1. 10 core/modules/media/tests/modules/media_test_oembed/media_test_oembed.module \media_test_oembed_preprocess_media_oembed_iframe()
  2. 11.x core/modules/media/tests/modules/media_test_oembed/media_test_oembed.module \media_test_oembed_preprocess_media_oembed_iframe()

Implements hook_preprocess_media_oembed_iframe().

File

core/modules/media/tests/modules/media_test_oembed/media_test_oembed.module, line 13

Code

function media_test_oembed_preprocess_media_oembed_iframe(array &$variables) {
    if ($variables['resource']->getProvider()
        ->getName() === 'YouTube') {
        $variables['media'] = str_replace('?feature=oembed', '?feature=oembed&pasta=rigatoni', (string) $variables['media']);
    }
    // @see \Drupal\Tests\media\Kernel\OEmbedIframeControllerTest
    $variables['#attached']['library'][] = 'media_test_oembed/frame';
    $variables['#cache']['tags'][] = 'yo_there';
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.