Full ELMS Learning Network documentation
function backup_migrate_item::get_primary_key
Get the primary key field title from the schema.
4 calls to backup_migrate_item::get_primary_key()
- backup_migrate_item::delete in sites/
all/ modules/ ulmus/ backup_migrate/ includes/ crud.inc - Delete the item from the database.
- backup_migrate_item::get_id in sites/
all/ modules/ ulmus/ backup_migrate/ includes/ crud.inc - Get the primary id for this item (if any is set).
- backup_migrate_item::save in sites/
all/ modules/ ulmus/ backup_migrate/ includes/ crud.inc - Save the item to the database.
- backup_migrate_item::set_id in sites/
all/ modules/ ulmus/ backup_migrate/ includes/ crud.inc - Set the primary id for this item (if any is set).
File
- sites/
all/ modules/ ulmus/ backup_migrate/ includes/ crud.inc, line 350 - 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 get_primary_key() {
$schema = $this->get_schema();
return @$schema['primary key'];
}