theme_comment_mode_form
- Versions
- 4.6
theme_comment_mode_form($mode)
Code
modules/comment.module, line 1464
<?php
function theme_comment_mode_form($mode) {
$modes = _comment_get_modes();
foreach ($modes as $key => $value) {
$options .= " <option value=\"$key\"". ($mode == $key ? ' selected="selected"' : '') .">$value</option>\n";
}
return "<select name=\"mode\">$options</select>\n";
}
?>Login or register to post comments 