function backup_migrate_item::get_primary_key in Backup and Migrate 6.2
Same name and namespace in other branches
- 8.2 includes/crud.inc \backup_migrate_item::get_primary_key()
- 8.3 includes/crud.inc \backup_migrate_item::get_primary_key()
- 6.3 includes/crud.inc \backup_migrate_item::get_primary_key()
- 7.3 includes/crud.inc \backup_migrate_item::get_primary_key()
- 7.2 includes/crud.inc \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 includes/
crud.inc - Delete the item from the database.
- backup_migrate_item::get_id in includes/
crud.inc - Get the primary id for this item (if any is set).
- backup_migrate_item::save in includes/
crud.inc - Save the item to the database.
- backup_migrate_item::set_id in includes/
crud.inc - Set the primary id for this item (if any is set).
File
- includes/
crud.inc, line 366 - 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'];
}