sunlab / wn-forumupload-plugin
Adds file upload management for winter/wn-forum-plugin
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 0
Forks: 1
Type:winter-plugin
pkg:composer/sunlab/wn-forumupload-plugin
Requires
- php: >=8.0
- composer/installers: ~1.0
- winter/wn-forum-plugin: dev-main
This package is auto-updated.
Last update: 2025-10-13 15:20:04 UTC
README
This plugin extends Winter.Forum to adds front-end user file upload capabilities to it.
It extends the Topic component to add a onFileUpload handler which:
- store the uploaded files
- attach them to the Postmodel
Under development
This plugin is still under active development and should not be used in a production environment.
Installation
This plugin can be installed using composer:
composer require sunlab/wn-levelup-plugin
How to use it
The plugin doesn't provide any front end component, you need to customize yourself the way the file should be attached on the frontend side, you can use it with Dropzone.js, a richeditor or any custom implementation.
You can find here a custom implementation reproducing a GitHub-like mechanism (as shown above).
Basically: you need to trigger an AJAX call for the handler onFileUpload sending files (the input name doesn't matter).
The handler will return server-side uploaded files' information containing:
    id => the File model id
    originalName => the uploaded original file name
    name => same as originalName without extension
    url => the server-side file's url
Settings
The plugin includes a Settings model to validate uploads, including:
- The allowed file extensions
- A max filesize limit
- The amount of files per post
Todo:
-  Add a onFileDeletionhandler to remove an attached file
