Drupal is a registered trademark of Dries Buytaert
Release: Drupal 10.3.6 Update released for Drupal core (10.3.6)! Release: Drupal 11.0.5 Update released for Drupal core (11.0.5)! Release: Drupal 10.2.9 Update released for Drupal core (10.2.9)! Release: Drupal 10.2.10 Update released for Drupal core (10.2.10)! Release: Drupal 10.3.7 Update released for Drupal core (10.3.7)! Release: Drupal 11.0.6 Update released for Drupal core (11.0.6)! Release: Drupal 10.3.8 Update released for Drupal core (10.3.8)! Release: Drupal 11.0.7 Update released for Drupal core (11.0.7)! Module Revived: Translation Management Tool 8.x-1.19 Module tmgmt updated after 7 months of inactivity (8.x-1.19). Usage Milestone: Account field split Module account_field_split crossed 10,000 active installs.

Serve plain files

Overview:

This module provides a way to serve configurable plain text files.

The main idea is to provide a way to configure static files in the backend,
like facebook domain ownership, google site verification or ads.txt, which may
be added or changed regularly by SEOs.

It can be either used as a normal configuration which will be imported/exported or
in conjunction with config_ignore to make it manageable in the production environment
without being overwritten by config import.

Usage:

  • Install module & configure permission Administer served files
  • Goto /admin/config/system/served_files
  • Add a file with path, max-age & content
  • The file is now available under the provided path

If you have external caching providers, e.g. Varnish, CDNs you should monitor
file changes via entity type hooks and purge caches there.

e.g:

use Drupal\serve_plain_file\Entity\ServedFile;

/**
 * Implements hook_ENTITY_TYPE_update().
 */
function my_module_served_file_update(ServedFile $entity) {
  $urls = $entity->getUrlsForCachePurging();
  my_module_purge_external_caches($urls);
}

/**
 * Implements hook_ENTITY_TYPE_delete().
 */
function my_module_served_file_delete(ServedFile $entity) {
  $urls = $entity->getUrlsForCachePurging();
  my_module_purge_external_caches($urls);
}

Contribute

Depends on

Dependencies of the latest stable release

No dependencies recorded for this project.

Required by

Tracked projects that depend on this one

No tracked projects depend on this one yet.

Activity

Tracked releases
1
Tracked since
Oct 2024
Latest release
1 year ago
Releases (12 mo)
0 ▼ from 1
Maintenance
Dormant

Releases

Version Type Core Release date
8.x-1.11 Stable Oct 2, 2024