function theme_advpoll_question in Advanced Poll 5
Same name and namespace in other branches
- 6 advpoll.module \theme_advpoll_question()
- 6.2 advpoll.module \theme_advpoll_question()
Theme an optional question.
1 theme call to theme_advpoll_question()
- advpoll_view in ./
advpoll.module - Implementation of hook_view().
File
- ./
advpoll.module, line 1264 - Advanced Poll - a sophisticated polling module for voting, elections, and group decision-making.
Code
function theme_advpoll_question($question) {
return '<p class="poll-question">' . $question . '</p>';
}