You are here

function _textimage_preset_delete in Textimage 6.2

Same name and namespace in other branches
  1. 5.2 textimage_admin.inc \_textimage_preset_delete()
  2. 5 textimage.module \_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_admin.inc

File

./textimage_admin.inc, line 682

Code

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