function calendar_systems_profile_delete in Calendar Systems 6
Same name and namespace in other branches
- 6.3 calendar_systems.admin.inc \calendar_systems_profile_delete()
Remove a profile from the database.
1 call to calendar_systems_profile_delete()
- calendar_systems_profile_delete_confirm_submit in ./
calendar_systems.admin.inc - Submit callback for Calendar systems profile delete form.
File
- ./
calendar_systems.admin.inc, line 485 - Integrate Calendar systems editors into Drupal.
Code
function calendar_systems_profile_delete($format) {
db_query("DELETE FROM {calendar_systems} WHERE language = %d", $format);
}