Currently, all facet blocks go through theme_facet_list. The problem is that the theme function doesn't have a clue about even the delta. This patch adds the delta to the the theme call that way at the theme layer you can do things like
if ($delta = 'something') {
return 'something different';
}
return 'my cool thing';
| Comment | File | Size | Author |
|---|---|---|---|
| delta.patch | 3.29 KB | Scott Reynolds |
Comments
Comment #1
robertdouglass commentedHa! we're working on the same thing.
Comment #2
robertdouglass commentedThese changes need to target 6.2.
Comment #3
robertdouglass commentedComment #4
robertdouglass commentedThanks Scott!