function textimage_ctools_export_load in Textimage 7.2
Implements hook_ctools_export_load().
1 string reference to 'textimage_ctools_export_load'
- textimage_schema in ./
textimage.install - Implements hook_schema().
File
- includes/
ctools.inc, line 21 - Chaos Tools module integration.
Code
function textimage_ctools_export_load($name) {
$preset = (object) _textimage_preset_load($name);
unset($preset->pid);
return $preset;
}