MyBB Community Forums

Full Version: Is there NO helper function in PluginLibrary 12 for uploads?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there NO helper function in PluginLibrary 12 for uploads?

Its got the helper function for the forums and groups, it there no helper function for uploading images?
I've not seen one, but uploads aren't particularly difficult to handle. What is it you're struggling to do?
I am looking to add forums images either via link or uploads Toungue
The upload_file function should help then: https://github.com/mybb/mybb/blob/featur...d.php#L724

You can also take some ideas from upload_avatar to ensure the uploaded file is actually an image and is the correct size, etc. As such things depend on what you're doing exactly, it's quite difficult to write a generic helper.