function backup_migrate_schedule::get_settings_path in Backup and Migrate 8.3
Same name and namespace in other branches
- 7.3 includes/schedules.inc \backup_migrate_schedule::get_settings_path()
Get the columns needed to list the type.
Overrides backup_migrate_item::get_settings_path
1 call to backup_migrate_schedule::get_settings_path()
- backup_migrate_schedule::get_menu_items in includes/
schedules.inc - Get the menu items for manipulating this type.
File
- includes/
schedules.inc, line 164 - All of the schedule handling code needed for Backup and Migrate.
Class
- backup_migrate_schedule
- A schedule class for crud operations.
Code
function get_settings_path() {
// Pull the schedules tab up a level to the top.
return BACKUP_MIGRATE_MENU_PATH . '/' . $this->type_name;
}