function theme_features_form_export in Features 6
Same name and namespace in other branches
- 7.2 theme/theme.inc \theme_features_form_export()
- 7 theme/theme.inc \theme_features_form_export()
Export selection / display for features export form.
1 theme call to theme_features_form_export()
- features_export_form in ./
features.admin.inc - Form callback for features export form. Acts as a router based on the form_state.
File
- theme/
theme.inc, line 248
Code
function theme_features_form_export($form) {
drupal_add_css(drupal_get_path('module', 'features') . '/features.css');
drupal_add_js(drupal_get_path('module', 'features') . '/features.js');
$output = '';
$output .= "<div class='clear-block features-components'>";
$output .= "<div class='column'>" . drupal_render($form['components']) . drupal_render($form['sources']) . "</div>";
$output .= "<div class='column'>" . drupal_render($form['features']) . "</div>";
$output .= "</div>";
$output .= drupal_render($form);
return $output;
}