zigit-dev / textformatter_tokens
Allows other modules to register tokens and replace them with actual values.
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 0
Type:processwire-module
Requires
- php: >=5.5
This package is auto-updated.
Last update: 2024-10-11 06:26:51 UTC
README
Overview
The TextformatterTokens module allows other modules to register tokens and replace them with actual values.
Installation
- Enable the
TextformatterTokens
module. - Enable the
SiteTokens
module. - Enable the
TextformatterTokens
text formatter for a field.
Usage
Use tokens provided by the SiteTokens
module inside a field that has the TextformatterTokens
text formatter enabled.
Save and display your page. The tokens should be replaced with the actual content.
Example Tokens
[site:name]
[page id=123]
whereid
is the ID of the page you want to embed its body field.
Debugging
You can view logs under your ProcessWire admin dashboard at Setup > Logs > tokens
.
Writing own tokens
To create custom tokens, refer to the SiteTokens.module
file for an example implementation.