function delta_create_export in Delta 7
Same name and namespace in other branches
- 6 delta.module \delta_create_export()
1 string reference to 'delta_create_export'
- delta_menu in ./
delta.module - Implementation of hook_menu().
File
- ./
delta.module, line 900 - 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_export() {
drupal_set_title(t('Export Delta API Overrides & Theme Settings Templates'));
$data = delta_build_export();
$output = '<div style="height: 420px;overflow: auto;"><pre>';
$output .= print_r($data, TRUE);
$output .= '</pre></div>';
return $output;
}