Request to change plugin load workflow
-
wrote on Feb 2, 2024, 9:10 AM last edited by
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?
-
@jaschaezra
/app/data/customconfig.php
is loaded in the very end - https://git.cloudron.io/cloudron/roundcube-app/-/blob/master/config.inc.php?ref_type=heads#L64 . You can do whatever php manipulation to$config['plugins']
in that file. Wouldn't that be enough? -
wrote on Feb 2, 2024, 11:26 AM last edited by
If someone can tell me how I can manipulate the array that plugins from /app/data/customconfig.php are loaded first because I have nearly no clue about php.
-
Think you just use https://www.php.net/manual/en/function.array-unshift.php ?
array_unshift($config['plugins'], "nextcloud_attachments", "filesystem_attachments");
-
Think you just use https://www.php.net/manual/en/function.array-unshift.php ?
array_unshift($config['plugins'], "nextcloud_attachments", "filesystem_attachments");
wrote on Feb 20, 2024, 7:43 AM last edited by@girish this worked for me, thanks.
-
@girish this worked for me, thanks.
wrote on Feb 20, 2024, 9:10 AM last edited by@jaschaezra what did you do?