Full ELMS Learning Network documentation
function backup_migrate_item::save
Save the item to the database.
1 call to backup_migrate_item::save()
- backup_migrate_item::edit_form_submit in sites/
all/ modules/ ulmus/ backup_migrate/ includes/ crud.inc - Submit the edit form for the item.
File
- sites/
all/ modules/ ulmus/ backup_migrate/ includes/ crud.inc, line 248 - 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 save() {
if (!$this->get_id()) {
$this->generate_id();
}
$data = $this->to_array();
drupal_write_record($this->db_table, $data, !empty($this->storage) ? $this->get_primary_key() : array());
}