pluginsGLPI / formcreator

GLPI Plugin Formcreator (DOWNLOAD : https://github.com/pluginsGLPI/formcreator/releases)
http://www.teclib-edition.com
GNU General Public License v3.0
173 stars 125 forks source link

[FR] Make Print-Button Optional inside Form. #3152

Open tb-killa opened 1 year ago

tb-killa commented 1 year ago

Is your feature request related to a problem? Please describe. No.

Describe the solution you'd like Make the Print Button Optional via General Config Option (yes / no). We dont want the Print Button be available for Users, it would be great if a simple General Config Option could be implemented (bool) to let choice if it should be generally showable or not.

Describe alternatives you've considered

Additional context Add here the Bool-Check: https://github.com/pluginsGLPI/formcreator/blob/develop/templates/pages/userform.html.twig#L51

btry commented 1 year ago

Hi

Features development is stalled to focus on general stability of the plugin.

You may disable the Print button by adding custom CSS to the entity in GLPI. Do not forget to enable UI customization!

.form-title .fas.fa-print {
  display: none;
}

image