inklabs / kommerce-core

PHP shopping cart core platform
https://kommerce-laravel-demo.jamieisaacs.com/
Apache License 2.0
65 stars 14 forks source link

Admin User should be able to set Attachment file types that Users can upload. #54

Closed pdt256 closed 8 years ago

pdt256 commented 8 years ago

This is handled in the FileManagerInterface. The LocalFileManager implementation handles the allowed file types in the constructor:

public function __construct(
        $destinationPath,
        $uriPrefix = null,
        $allowedImageTypes = [
            IMAGETYPE_JPEG,
            IMAGETYPE_PNG
        ]
    )