function textimage_ctools_export_list in Textimage 7.2
Implements hook_ctools_export_list().
1 string reference to 'textimage_ctools_export_list'
- textimage_schema in ./
textimage.install - Implements hook_schema().
File
- includes/
ctools.inc, line 10 - Chaos Tools module integration.
Code
function textimage_ctools_export_list() {
$presets = array();
foreach (textimage_get_presets() as $preset) {
$presets[$preset->name] = $preset->name;
}
return $presets;
}