You are here

function theme_mb_extra_admin in More Buttons 7

Display the MB Extra settings form page.

Return value

The complete HTML formatted administer page.

File

mb_extra/mb_extra.admin.inc, line 66

Code

function theme_mb_extra_admin($variables) {
  _mb_load_css('admin');
  $module = 'mb_extra';
  $output = '';
  $form = drupal_get_form($module . '_admin');
  $output .= drupal_render($output);
  return $output;
}