You are here

function theme_swftools_flowplayer3_scheme_form in SWF Tools 6.3

Theme the Flowplayer 3 color settings for the admin form.

1 theme call to theme_swftools_flowplayer3_scheme_form()
swftools_flowplayer3_profile_form in flowplayer3/swftools_flowplayer3.admin.inc

File

flowplayer3/swftools_flowplayer3.admin.inc, line 396
Configuration settings for Flowplayer 3.

Code

function theme_swftools_flowplayer3_scheme_form($form, $profile = '') {
  $output = '';

  // Wrapper
  $output .= '<div class="color-form clear-block">';

  // Color schemes
  $output .= drupal_render($form['swftools_flowplayer3_scheme']);

  // Palette
  $output .= '<div id="palette" class="clear-block">';
  foreach (element_children($form['swftools_flowplayer3_palette']) as $name) {
    $output .= drupal_render($form['swftools_flowplayer3_palette'][$name]);
  }
  $output .= '</div>';

  // Close wrapper
  $output .= '</div>';
  return $output;
}