R_J
AdminR_J Admin
-
Re: Vanilla Module
Yes. Take a look at those modules for some inspirations * /applications/dashboard/modules/class.tablesummarymodule.php * /applications/dashboard/modules/class.mediaitemmodule.php * /applications/dash… (View Post)1 -
Re: Custom plugin not firing on production server, but works on local??
At first side I see this public function base_Render_Before(&$Sender): you have to remove the ampersand "&" This linerequire_once(PATH_PLUGINS.DS.'ActivityStream'.DS.'… (View Post)2 -
Re: How to add custom tables/columns in database via code?
This is easy, but you have to stick to some conventions to take benefit from all automatisms. If your plugin has a method called setup() it will be called automatically when the plugin is enabled. Th… (View Post)2 -
Re: how to whitelist other files extensions
Search in your /conf/config.php for a line like that $Configuration['Garden']['Upload']['AllowedFileExtensions'] = ['txt', 'jpg', 'jpeg', &… (View Post)1 -
Re: Custom Permission
I would be something like that in the addon.json: "registerPermissions": { "Plugins.MyAddon.View" => 1, "Plugins.MyAddon.Manage" => 0, }, And in your controller yo… (View Post)2
