Full ELMS Learning Network documentation
function backup_migrate_item::delete
Delete the item from the database.
File
- sites/
all/ modules/ ulmus/ backup_migrate/ includes/ crud.inc, line 259 - CRUD functions for backup and migrate types (schedules, profiles etc.).
Class
- backup_migrate_item
- A base class for items which can be stored in the database, listed, edited, deleted etc.
Code
function delete() {
$keys = (array) $this->get_primary_key();
db_query('DELETE FROM {' . $this->db_table . '} WHERE ' . $keys[0] . ' = :id', array(':id' => $this->get_id()));
}