Skip to content

Instantly share code, notes, and snippets.

@markhalliwell
Created October 2, 2013 18:05
Show Gist options
  • Save markhalliwell/6797913 to your computer and use it in GitHub Desktop.
Save markhalliwell/6797913 to your computer and use it in GitHub Desktop.
<?php
return array(
'#theme' => 'table__forum_list',
'#theme_wrappers' => array('container__suggestion'),
'#attributes' => array(
'class' => array('extra-class', 'even-more-classes'),
'id' => 'i-am-unique',
'data-toggle' => 'tooltip',
),
...
);
// OR
return array(
'#theme' => 'container__suggestion'
'#attributes' => array(
'class' => array('extra-class', 'even-more-classes'),
'id' => 'i-am-unique',
'data-toggle' => 'tooltip',
),
'forum_list' => array(
'#theme' => 'table__forum_list'
...
),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment