timnarr / kirby-sanitize-filenames
This plugin provides filename sanitizing by using file hooks.
Installs: 6
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
Type:kirby-plugin
Requires
- php: >=8.0.0
- getkirby/composer-installer: ^1.1
Requires (Dev)
README
Sanitize Filenames for Kirby CMS – This plugin automatically transforms and sanitizes filenames using file hooks. It can converts filenames to snake_case
or kebab-case
. It also sanitizes filenames by modifying special characters and allows adding a custom prefix for consistent file naming.
Installation
Download
Download and copy this repository to /site/plugins/kirby-sanitize-filenames
.
Composer
composer require timnarr/kirby-sanitize-filenames
Usage
The plugin listens for these two Kirby hooks, and when these are triggered, the filename gets manipulated:
file.create:after
file.replace:after
This plugin does not support the changeName
hook because file renaming, which occurs after the create
and replace
hooks, will trigger the changeName
hook too. This could lead to some misbehaviors. However, it is beneficial to be able to change the filename after the initial upload and filename manipulation.
Config
You can choose between snake
and kebab
style. The prefix will also be transformed to a safe-name and a delimiter gets appended: _
for snake and -
for kebab style.
'timnarr.sanitize-filenames' => [ 'caseStyle' => 'snake', 'prefix' => 'timnarr' ]
License
MIT License Copyright © 2023 Tim Narr