bbb-meeting.html.twig in BigBlueButton 8
Default theme implementation to display an iframe field.
Available variables:
- src: Url being loaded into the iframe.
- attributes: An array of HTML attributes, intended to be added to the iframe tag.
3 theme calls to bbb-meeting.html.twig
- BBBLoginMeeting::build in modules/
bbb_node/ src/ Plugin/ Block/ BBBLoginMeeting.php - Implements \Drupal\block\BlockBase::build().
- BBBMeetingTypeController::attend in modules/
bbb_node/ src/ Controller/ BBBMeetingTypeController.php - Redirect to big blue button instance; Menu callback
- BBBMeetingTypeController::moderate in modules/
bbb_node/ src/ Controller/ BBBMeetingTypeController.php - Redirect to big blue button instance.
File
modules/bbb_node/templates/bbb-meeting.html.twigView source
- {#
- /**
- * @file
- * Default theme implementation to display an iframe field.
- *
- * Available variables:
- * - src: Url being loaded into the iframe.
- * - attributes: An array of HTML attributes, intended to be added to the
- * iframe tag.
- */
- #}
- <iframe {{ attributes }}>
- {% trans %}
- Your browser does not support iframes, but you can use the following link:
- <a href="{{ src }}">Link</a>
- {% endtrans %}
- </iframe>