View | Details | Raw Unified | Return to bug 39142
Collapse All | Expand All

(-)a/Koha/Template/Plugin/Koha.pm (+20 lines)
Lines 70-75 sub Preference { Link Here
70
    return C4::Context->preference($pref);
70
    return C4::Context->preference($pref);
71
}
71
}
72
72
73
=head3 debug_flag
74
75
This method checks if the currently logged in user is allowed
76
access to the new debug ui permission. It should return
77
0 if no one is logged in or context is unavailable for some other reason
78
    or they do not have the permission
79
1 if they are a superlibrarian
80
1<<31 if they do have the permission
81
82
=cut
83
84
sub debug_flag {
85
    return 0 unless C4::Context->userenv();
86
    return 1 if C4::Context->IsSuperLibrarian();
87
    my $flags = C4::Context->userenv()->{'flags'};
88
    my $mask  = 1 << 31;
89
    return $flags & $mask;
90
91
}
92
73
=head3 CSVDelimiter
93
=head3 CSVDelimiter
74
94
75
The delimiter option 'tabs' is stored in the DB as 'tabulation' to avoid issues
95
The delimiter option 'tabs' is stored in the DB as 'tabulation' to avoid issues
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/intranet-bottom.inc (+10 lines)
Lines 186-191 Link Here
186
    [% END %]
186
    [% END %]
187
[% END %]
187
[% END %]
188
188
189
[% IF Koha.debug_flag %]
190
    <div style="position: fixed; bottom: 0;">
191
        <button onclick="window.location.search += '&DISABLE_SYSPREF_IntranetUserCSS=yes&DISABLE_SYSPREF_OPACUserCSS=yes'">Disable User CSS</button>
192
        <button onclick="window.location.search += '&DISABLE_SYSPREF_IntranetUserJS=yes&DISABLE_SYSPREF_OPACUserJS=yes'">Disable User JS</button>
193
        <button onclick="window.location.search += '&DISABLE_SYSPREF_OpacAdditionalStylesheet=yes&DISABLE_SYSPREF_opaclayoutstylesheet=yes&DISABLE_SYSPREF_intranetcolorstylesheet=yes&DISABLE_SYSPREF_intranetstylesheet=yes'"
194
            >Load only default stylesheets</button
195
        >
196
    </div>
197
[% END # IF %]
198
189
[% IF ( footerjs ) %]
199
[% IF ( footerjs ) %]
190
    [% INCLUDE js_includes.inc %]
200
    [% INCLUDE js_includes.inc %]
191
    [% jsinclude | $raw # Parse the page template's JavaScript block if necessary %]
201
    [% jsinclude | $raw # Parse the page template's JavaScript block if necessary %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/permissions.inc (-1 / +3 lines)
Lines 87-92 Link Here
87
    [%- CASE 'preservation' -%]
87
    [%- CASE 'preservation' -%]
88
        <span class="main_permission preservation_permission">Manage the preservation module</span>
88
        <span class="main_permission preservation_permission">Manage the preservation module</span>
89
        <span class="permissioncode">([% name | html %])</span>
89
        <span class="permissioncode">([% name | html %])</span>
90
    [%- CASE 'debug' -%]
91
        <span class="main_permission debug_permission">Display the Debug UI</span>
92
        <span class="permissioncode">([% name | html %])</span>
90
    [%- END -%]
93
    [%- END -%]
91
[%- END -%]
94
[%- END -%]
92
95
93
- 

Return to bug 39142