You are here

function theme_answer_buttons in Answers 5.2

1 theme call to theme_answer_buttons()
answers_view in ./answers.module

File

./answers.module, line 503
Enables the creation of question nodes that can be answered by posting answer nodes.

Code

function theme_answer_buttons($buttons) {
  return '<div class="answerbuttons">' . implode(' | ', $buttons) . '</div>';
}