function backup_migrate_item::get_settings_path in Backup and Migrate 8.3
Same name and namespace in other branches
- 6.3 includes/crud.inc \backup_migrate_item::get_settings_path()
- 7.3 includes/crud.inc \backup_migrate_item::get_settings_path()
Get the columns needed to list the type.
8 calls to backup_migrate_item::get_settings_path()
- backup_migrate_destination::edit_form in includes/
destinations.inc - Get the edit form for the item.
- backup_migrate_destination::get_action_links in includes/
destinations.inc - Get the action links for a destination.
- backup_migrate_destination::get_file_links in includes/
destinations.inc - Get the action links for a file on a given destination.
- backup_migrate_destination::get_menu_items in includes/
destinations.inc - Add the menu items specific to the destination type.
- backup_migrate_item::edit_form in includes/
crud.inc - Get the edit form for the item.
1 method overrides backup_migrate_item::get_settings_path()
- backup_migrate_schedule::get_settings_path in includes/
schedules.inc - Get the columns needed to list the type.
File
- includes/
crud.inc, line 727 - 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_settings_path() {
return BACKUP_MIGRATE_MENU_PATH . $this->settings_path . $this->type_name;
}