Search found 31 matches

by econsor_ag
13 Oct 2020, 11:44
Forum: Help
Topic: How do I disable the refresh_delay
Replies: 4
Views: 2788

Re: How do I disable the refresh_delay

Thank you for your help
by econsor_ag
13 Oct 2020, 06:04
Forum: Help
Topic: How do I disable the refresh_delay
Replies: 4
Views: 2788

Re: How do I disable the refresh_delay

So I can set both to 0 ? I am working on a live instance, I dont want to break the page.
by econsor_ag
12 Oct 2020, 13:40
Forum: Help
Topic: How do I disable the refresh_delay
Replies: 4
Views: 2788

How do I disable the refresh_delay

How would I disable the refresh_delay without breaking the framework?

The reason I need to disable it is because I have Pop-Up forms in the navigation.
If the site refreshes while the user is inside the form, all inputs will reset which will annoy alot of people.
by econsor_ag
29 Jul 2020, 06:55
Forum: General Plugin Discussion
Topic: REST API
Replies: 0
Views: 16105

REST API

Hello, I want to extend the users_rest.php in the api/rest/restcore/ folder to create a function which allows me to create a auth token using a username and password. Is it possible to do this in the plugin directory without changing core files, or is there a better solution extending the API? Thank...
by econsor_ag
23 Jul 2020, 14:00
Forum: General Plugin Discussion
Topic: Is there a plugin event to redirect to custom page after login?
Replies: 3
Views: 5594

Re: Is there a plugin event to redirect to custom page after login?

Perhaps you can use this setting: /** * Default page after Login or Set Project * @global string $g_default_home_page */ $g_default_home_page = 'my_view_page.php'; If that does not work, you always can define your own plugin Event and adjust source code ( not the best solution but sometimes unavoid...
by econsor_ag
23 Jul 2020, 13:19
Forum: General Plugin Discussion
Topic: Is there a plugin event to redirect to custom page after login?
Replies: 3
Views: 5594

Is there a plugin event to redirect to custom page after login?

Hello,

is there a plugin event, or some other method to redirect to custom page after login?
I want to create a "stamp-in" system for employees where they have to confirm a button after login that they started working for that day.
by econsor_ag
03 Apr 2020, 14:38
Forum: Help
Topic: How do I hide the user impersonate button?
Replies: 2
Views: 2595

Re: How do I hide the user impersonate button?

Check out this setting: /** * Threshold needed to impersonate a user or NOBODY to disable the feature. * @global integer $g_impersonate_user_threshold */ $g_impersonate_user_threshold = ADMINISTRATOR; Thank you I solved it like this inside my plugin :wink: : if(auth_get_current_user_id() != 223){ g...
by econsor_ag
02 Apr 2020, 12:26
Forum: Help
Topic: How do I hide the user impersonate button?
Replies: 2
Views: 2595

How do I hide the user impersonate button?

Hello,

can I hide the impersonate button in the settings tab of a user? What hook do I need?
I need to do it in PHP so only specific Users with the hardcoded ID can use that button.
by econsor_ag
26 Mar 2020, 14:28
Forum: Deutsch
Topic: [Plugin/Hook] Reihenfolge der Menü Items ändern
Replies: 2
Views: 6290

Re: [Plugin/Hook] Reihenfolge der Menü Items ändern

Habe es nicht probiert, aber mit EVENT_MENU_MAIN_FILTER könnte das machbar sein. https://mantisbt.org/docs/master/en-US/Developers_Guide/html-desktop/#dev.eventref.output.menu This event gives plugins the opportunity to modify the complete main menu before it is output (for example re-order items, ...
by econsor_ag
26 Mar 2020, 09:07
Forum: Deutsch
Topic: [Plugin/Hook] Reihenfolge der Menü Items ändern
Replies: 2
Views: 6290

[Plugin/Hook] Reihenfolge der Menü Items ändern

Hallo Zusammen,

ich habe mehrere Plug-Ins die neue Menü Punkte links hinzufügen, wie kann ich hierfür aber die Reihenfolge setzen?

'EVENT_MENU_MAIN' => 'addMenu'
by econsor_ag
26 Feb 2020, 07:49
Forum: Deutsch
Topic: Nach mehreren Reportern Filtern
Replies: 2
Views: 6138

Re: Nach mehreren Reportern Filtern

atrol wrote: 25 Feb 2020, 20:29 Rechts oben im Filtermenue umschalten auf "Erweiterte Filter".
Dann lassen sich nach Klick auf Reporter auch mehrere Reporter auswählen.
Vielen Dank, genau wonach ich gesucht hatte :D
by econsor_ag
25 Feb 2020, 08:06
Forum: Deutsch
Topic: Nach mehreren Reportern Filtern
Replies: 2
Views: 6138

Nach mehreren Reportern Filtern

Hallo Zusammen,

ist es möglich nach mehreren Reportern zu Filtern? Wenn es dazu erweitert werden müsste wie müsste ich vorgehen, oder was müsste beachtet werden?

Vielen Dank :)
by econsor_ag
18 Feb 2020, 15:33
Forum: Deutsch
Topic: Mantisbt Installtion mit alter Datenbank
Replies: 4
Views: 7673

Re: Mantisbt Installtion mit alter Datenbank

atrol wrote: 18 Feb 2020, 15:29 Im Prinzip ja, aber natürlich auch an all die anderen Dinge denken, die dokumentiert sind, wie z.B. Konfigurationsdateien übernehmen, ggf. Plugins die nicht Bestandteil von Mantis selbst sind in's Plugins Verzeichnis kopieren, ...
Vielen Dank :)
by econsor_ag
18 Feb 2020, 15:00
Forum: Deutsch
Topic: Mantisbt Installtion mit alter Datenbank
Replies: 4
Views: 7673

Re: Mantisbt Installtion mit alter Datenbank

Das Datenbankschema muss angepasst werden, da es Neuerungen in 2.23.0 gab. https://www.mantisbt.org/docs/master/en-US/Admin_Guide/html-desktop/#admin.install.upgrade D.h. inbesondere der folgende Schritt ist wichtig http://yoursite/mantisbt-NEW/admin/install.php Hi, danke für die schnelle Antwort. ...
by econsor_ag
18 Feb 2020, 14:40
Forum: Deutsch
Topic: Mantisbt Installtion mit alter Datenbank
Replies: 4
Views: 7673

Mantisbt Installtion mit alter Datenbank

Hallo Zusammen,

ich benutzte momentan Mantisbt 2.19.0 und habe jetzt auf einen anderen Server die aktuellste Version installiert (2.23.0).
Kann ich einfach meine Datenbank von 2.19.0 rüber kopieren zu 2.23.0 oder muss ich was beachten?

Vielen Dank :)