You are here

function beautytips_manager_delete_custom_tip in BeautyTips 6.2

Same name and namespace in other branches
  1. 8 beautytips_manager/beautytips_manager.module \beautytips_manager_delete_custom_tip()
  2. 7.2 beautytips_manager.module \beautytips_manager_delete_custom_tip()

Delete a singular custom beautytip.

1 call to beautytips_manager_delete_custom_tip()
beautytips_manager_delete_confirm_form_submit in ./beautytips_manager.module
Submit callback for beautytips delete confirm form.

File

./beautytips_manager.module, line 336

Code

function beautytips_manager_delete_custom_tip($bid) {
  db_query("DELETE FROM {beautytips_manager} WHERE bid = %d", $bid);
}