Drupal is a registered trademark of Dries Buytaert
drupal 10.6.12 Update released for Drupal core (10.6.12)! drupal 11.3.13 Update released for Drupal core (11.3.13)! drupal 10.6.11 Update released for Drupal core (10.6.11)! drupal 11.3.12 Update released for Drupal core (11.3.12)! drupal 11.2.14 Update released for Drupal core (11.2.14)! drupal 10.5.12 Update released for Drupal core (10.5.12)! cms 2.1.3 Update released for Drupal core (2.1.3)! drupal 10.5.11 Update released for Drupal core (10.5.11)! drupal 11.3.11 Update released for Drupal core (11.3.11)! drupal 11.2.13 Update released for Drupal core (11.2.13)! drupal 10.6.10 Update released for Drupal core (10.6.10)! cms 2.1.2 Update released for Drupal core (2.1.2)! drupal 11.1.10 Update released for Drupal core (11.1.10)! drupal 10.5.10 Update released for Drupal core (10.5.10)! drupal 10.4.10 Update released for Drupal core (10.4.10)! drupal 11.2.12 Update released for Drupal core (11.2.12)! drupal 11.3.10 Update released for Drupal core (11.3.10)! drupal 10.6.9 Update released for Drupal core (10.6.9)! drupal 10.6.8 Update released for Drupal core (10.6.8)! drupal 11.3.9 Update released for Drupal core (11.3.9)!

Provides a Drupal text filter that replaces configured links with iframe markup.

What it does

  • Stores link to iframe replacements in a custom database table.
  • Adds a text filter plugin: Replace links with iframes.
  • When enabled on a text format, matching links in processed text are replaced with the configured iframe markup.

Requirements

  • Drupal 10 or 11
  • Core filter module (declared as a dependency)

Installation

  1. Enable the module.
  2. Rebuild caches.

Configuration

  1. Go to: /admin/config/content/links-to-iframes
  2. Add one or more replacements:
    • Link
    • Iframe
  3. Save replacements.

Enable the filter on a text format

  1. Go to: /admin/config/content/formats
  2. Edit the text format you want.
  3. Enable Replace links with iframes.
  4. Save the text format.

Matching behavior

  • Matches anchors by exact href value.
  • Replacement runs only where that text format is applied.

Example input and output

Configured replacement:

  • Link: https://example.com/embed#swap-for-iframe
  • Iframe: <iframe src="https://example.com/embed" frameborder=""></iframe>

Input (text using a format with the filter enabled):

<p>
   <a href="https://example.com/embed#swap-for-iframe">Open embed</a>
</p>

Output after filtering:

<p>
   <iframe src="https://example.com/embed"></iframe>
</p>

Data storage

  • Data is stored in table: links_to_iframes_filter
  • Cache tag used by the filter: links_to_iframes_filter:mappings

Testing

phpunit tests area available in the /tests folder.

Activity

Total releases
4
First release
Mar 2026
Latest release
3 weeks ago
Release cadence
23 days
Stability
25% stable

Release Timeline

Releases

Version Type Release date
1.0.0 Stable Jun 2, 2026
1.0.0-beta1 Pre-release Apr 29, 2026
1.0.0-alpha1 Pre-release Mar 25, 2026
1.0.x-dev Dev Mar 25, 2026