BoxTranslation.php 513 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace Drupal\block_content\Plugin\migrate\source\d6;
  3. use Drupal\block_content\Plugin\migrate\source\d7\BlockCustomTranslation as D7BlockCustomTranslation;
  4. /**
  5. * Gets Drupal 6 i18n custom block translations from database.
  6. *
  7. * @MigrateSource(
  8. * id = "d6_box_translation",
  9. * source_module = "i18nblocks"
  10. * )
  11. */
  12. class BoxTranslation extends D7BlockCustomTranslation {
  13. /**
  14. * Drupal 6 table names.
  15. */
  16. const CUSTOM_BLOCK_TABLE = 'boxes';
  17. const I18N_STRING_TABLE = 'i18n_strings';
  18. }