You are here

function _textimage_preset_delete in Textimage 5

Same name and namespace in other branches
  1. 5.2 textimage_admin.inc \_textimage_preset_delete()
  2. 6.2 textimage_admin.inc \_textimage_preset_delete()
  3. 7.2 textimage.admin.inc \_textimage_preset_delete()
1 call to _textimage_preset_delete()
textimage_preset_delete_confirm_submit in ./textimage.module

File

./textimage.module, line 1113

Code

function _textimage_preset_delete($id) {
  _textimage_preset_flush($id);
  return db_query('DELETE FROM {textimage_preset} where pid = %d', $id);
}