You are here

function backup_migrate_location::location_types in Backup and Migrate 8.3

Same name and namespace in other branches
  1. 6.3 includes/locations.inc \backup_migrate_location::location_types()
  2. 7.3 includes/locations.inc \backup_migrate_location::location_types()

Get the available location types.

2 calls to backup_migrate_location::location_types()
backup_migrate_location::edit_form in includes/locations.inc
Get the edit form for the item.
backup_migrate_location::get_subtype_name in includes/locations.inc
Get the type name of this location for display to the user.
1 method overrides backup_migrate_location::location_types()
backup_migrate_source::location_types in includes/sources.inc
Get the available location types.

File

includes/locations.inc, line 207

Class

backup_migrate_location
A base class for creating locations.

Code

function location_types() {
  return backup_migrate_get_location_subtypes();
}