function delta_create_theme_settings_template in Delta 7
Same name and namespace in other branches
- 6 delta.module \delta_create_theme_settings_template()
Page callback for AJAX implementation of the add template form
Parameters
$theme: The theme to which the template is being added/edited
1 string reference to 'delta_create_theme_settings_template'
- delta_menu in ./
delta.module - Implementation of hook_menu().
File
- ./
delta.module, line 945 - The Delta Theme API is an advanced manipulation of the Theme Settings API to allow for customization/configuration of theme settings based on node types, context, or groups of paths.
Code
function delta_create_theme_settings_template($theme) {
$output = drupal_get_form('delta_create_theme_settings_template_form', $theme);
return $output;
}