public function JwPlayer::getInfo in JW Player 8
Returns the element properties for this element.
Return value
array An array of element properties. See \Drupal\Core\Render\ElementInfoManagerInterface::getInfo() for documentation of the standard properties of all elements, and the return value format.
Overrides ElementInterface::getInfo
File
- src/
Element/ JwPlayer.php, line 34
Class
- JwPlayer
- Provides a render element for a table.
Namespace
Drupal\jw_player\ElementCode
public function getInfo() {
$class = get_class($this);
return [
'#theme' => 'jw_player',
'#pre_render' => [
[
$class,
'preRenderPlayer',
],
],
'#settings' => [],
'#attached' => [
'library' => [
'jw_player/behaviors',
],
],
];
}