You are here

function file_replace_entity_type_build in File Replace (D8) 8

Implements hook_entity_type_build().

File

./file_replace.module, line 13
File replace functionality.

Code

function file_replace_entity_type_build(array &$entity_types) {
  $entity_types['file']
    ->setFormClass('replace', 'Drupal\\file_replace\\Form\\FileReplaceForm');
  $entity_types['file']
    ->setLinkTemplate('replace-form', '/admin/content/files/replace/{file}');
}