You are here

function _mobile_codes_preset_delete in Mobile Codes 6

Same name and namespace in other branches
  1. 5 mobile_codes.admin.inc \_mobile_codes_preset_delete()
1 call to _mobile_codes_preset_delete()
mobile_codes_presets_delete_submit in ./mobile_codes.admin.inc

File

./mobile_codes.admin.inc, line 249

Code

function _mobile_codes_preset_delete($pid) {
  _mobile_codes_presets_flush($pid);
  return db_query('DELETE FROM {mobile_codes_presets} where pid = %d', $pid);
}