Created
June 17, 2019 18:00
-
-
Save jorislucius/0286fe4bcdbc89bf580f0f4c53c228d3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Render. | |
* | |
* @param $course_code | |
* | |
* @return array | |
* Returns a renderable array. | |
*/ | |
public function render($course_code) { | |
return [ | |
'#type' => 'markup', | |
'#markup' => '<div id="root"></div>', | |
'#attached' => [ | |
'drupalSettings' => [ | |
'course_code' => $course_code, | |
], | |
'library' => [ | |
'YOURLIBRARY.NAME', | |
], | |
], | |
]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment