Search found 3 matches

by MrMaker
16 Aug 2019, 07:06
Forum: General Plugin Discussion
Topic: is there a plugin to sync with lat/long map view?
Replies: 4
Views: 7068

Re: is there a plugin to sync with lat/long map view?

I think it would be easy enough to create a plugin that could define the custom fields, show a single bug location on a map in details view, and maybe even allow setting location by placing a marker on a map in edit view. The map with all the bugs shown though would probably be best done outside man...
by MrMaker
02 Jul 2019, 05:02
Forum: General Plugin Discussion
Topic: Example of custom authentication provider with SampleAuth
Replies: 4
Views: 9981

Re: Example of custom authentication provider with SampleAuth

I think all the logic for your authentication needs to go into auth_user_flags() in SampleAuth.php. You can take the user creation from my ServerAuth.php auto_login() function, but move it to where the TODO comment is in auth_user_flags(): $t_user_id = empty($t_username) ? false : user_get_id_by_nam...
by MrMaker
02 Jul 2019, 04:38
Forum: General Plugin Discussion
Topic: Example of custom authentication provider with SampleAuth
Replies: 4
Views: 9981

Re: Example of custom authentication provider with SampleAuth

I had a go at making a custom authentication provider using Server provided auth (REMOTE_USER) - the concept is similar to what you are asking for from the mantis point of view, except I skip the login page (which you will not want to do), and check server environment variables instead of an externa...