Hi!
I want to use the "Nextcloud Attachment" plugin (see here) because it would be great to have it.
Unfortunately it needs to be loaded before any other attachment plugin. From the readme:
When enabling the plugin make sure to place it before any other attachment plugins like filesystem_attachments E.g.
$config['plugins'] = array('nextcloud_attachments', /*...*/ 'filesystem_attachments', /*...*/ 'vcard_attachments' /*...*/);
At the moment the plugins coming with the package are loaded like this:
$config['plugins'] = array('acl', 'archive', 'attachment_reminder', 'emoticons', 'managesieve', 'markasjunk', 'newmail_notifier', 'vcard_attachments', 'zipdownload');
I would suggest:
- Create an empty array for the plugins
- require_once "/app/data/customconfig.php";
- array_push($config['plugins'], 'acl', 'archive', 'attachment_reminder', 'emoticons', 'managesieve', 'markasjunk', 'newmail_notifier', 'vcard_attachments', 'zipdownload')
Could that be possible?