Guest User

Untitled

a guest
Aug 14th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. $build ['send_data'] = array(
  2. '#theme' => 'my_custom_template',
  3. '#content' => $result,
  4. );
  5.  
  6. function my_custom_theme($existing, $type, $theme, $path) {
  7. return [
  8. 'my_custom_template' => [
  9. 'variables' => ['content' => NULL,]
  10. ],
  11. ];
  12. }
  13.  
  14. function my_custom_theme($existing, $type, $theme, $path) {
  15. return [
  16. 'my_custom_template' => [
  17. 'variables' => ['content' => NULL]
  18. ],
  19. 'user' => [
  20. 'variables' => ['content' => NULL]
  21. ],
  22. ];
  23. }
Add Comment
Please, Sign In to add comment