Linc
AdminLinc Admin
Options are papercuts.
Reactions
-
Re: Sharing code across plugins
First, I think distributing a "generic functions" plugin is a very bad route. Generic functions go in core, that's the point. No one wants to maintain extra plugins - neither the author nor… (View Post)2 -
Re: Banned and deactivated users profiles sending E-Mail notifications
Pretty confused what's going on here. This appears 3 times in the activitymodel: // Only send if the user is not banned if (!val('Banned', $User)) { $Email->send(); } Banned users should never rec… (View Post)1 -
Re: Banned and deactivated users profiles sending E-Mail notifications
Also note there is an "Email" permission that you can revoke from a role to prevent them from receiving any email. That is perhaps the easiest solution to "deactivate": just stick… (View Post)4 -
Re: SettingsPermission
I really thought it was used at some point. My feeling is it should be removed to avoid security complacency. I've heard folks confuse it for the only needed permission check on that page, and that w… (View Post)2 -
Re: Controllers in Plugins
A controller is definitely the best way to go about this. It's straightforward, clear, and less prone to future issues. @Bleistivt is correct: applications will one day be folded into plugins. There … (View Post)1