You are here

function backup_migrate_item::strings in Backup and Migrate 8.2

Same name and namespace in other branches
  1. 8.3 includes/crud.inc \backup_migrate_item::strings()
  2. 6.3 includes/crud.inc \backup_migrate_item::strings()
  3. 6.2 includes/crud.inc \backup_migrate_item::strings()
  4. 7.3 includes/crud.inc \backup_migrate_item::strings()
  5. 7.2 includes/crud.inc \backup_migrate_item::strings()

This function is not supposed to be called. It is just here to help the po extractor out.

3 methods override backup_migrate_item::strings()
backup_migrate_destination::strings in includes/destinations.inc
This function is not supposed to be called. It is just here to help the po extractor out.
backup_migrate_profile::strings in includes/profiles.inc
This function is not supposed to be called. It is just here to help the po extractor out.
backup_migrate_schedule::strings in includes/schedules.inc
This function is not supposed to be called. It is just here to help the po extractor out.

File

includes/crud.inc, line 541
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 strings() {

  // Help the pot extractor find these strings.
  t('List !type');
  t('Create !type');
  t('Delete !type');
  t('Edit !type');
  t('Export !type');
}