You are here

function theme_contactinfo_admin_settings in Contact Info 7

Theme function for the Contact Info settings form.

It's just a wrapper so that themers can do what they want with this form.

File

./contactinfo.module, line 201
Collects contact information and displays it in an hCard block.

Code

function theme_contactinfo_admin_settings($variables) {
  $form = $variables['form'];
  return drupal_render_children($form);
}