| 7 forum.admin.inc | theme_forum_form($variables) |
| 8 forum.admin.inc | theme_forum_form($variables) |
Returns HTML for a forum form.
By default this does not alter the appearance of a form at all, but is provided as a convenience for themers.
Parameters
$variables: An associative array containing:
- form: A render element representing the form.
Related topics
File
- modules/
forum/ forum.admin.inc, line 116 - Administrative page callbacks for the forum module.
Code
function theme_forum_form($variables) {
return drupal_render_children($variables['form']);
}
Login or register to post comments