Bugzilla – Attachment 180331 Details for
Bug 37054
Allow for custom library colors in the staff interface
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 37054: Add ability to adjust colors per branch
Bug-37054-Add-ability-to-adjust-colors-per-branch.patch (text/plain), 4.38 KB, created by
Lucas Gass (lukeg)
on 2025-04-02 13:02:37 UTC
(
hide
)
Description:
Bug 37054: Add ability to adjust colors per branch
Filename:
MIME Type:
Creator:
Lucas Gass (lukeg)
Created:
2025-04-02 13:02:37 UTC
Size:
4.38 KB
patch
obsolete
>From 0e1bcbd3c7a5d068d57d69c6f283327ca731ca26 Mon Sep 17 00:00:00 2001 >From: Lucas Gass <lucas@bywatersolutions.com> >Date: Wed, 2 Apr 2025 12:56:24 +0000 >Subject: [PATCH] Bug 37054: Add ability to adjust colors per branch > >--- > Koha/Library.pm | 3 ++- > Koha/Template/Plugin/Branches.pm | 5 +++++ > admin/branches.pl | 1 + > .../prog/en/includes/doc-head-open.inc | 8 ++++++++ > .../prog/en/modules/admin/branches.tt | 19 +++++++++++++++++++ > 5 files changed, 35 insertions(+), 1 deletion(-) > >diff --git a/Koha/Library.pm b/Koha/Library.pm >index 90db8e978c0..6b3189fc5e7 100644 >--- a/Koha/Library.pm >+++ b/Koha/Library.pm >@@ -369,7 +369,8 @@ sub to_api_mapping { > branchnotes => 'notes', > marcorgcode => 'marc_org_code', > opacusercss => undef, >- opacuserjs => undef >+ opacuserjs => undef, >+ library_color => undef > }; > } > >diff --git a/Koha/Template/Plugin/Branches.pm b/Koha/Template/Plugin/Branches.pm >index 164bc8162b2..3329a9c859b 100644 >--- a/Koha/Template/Plugin/Branches.pm >+++ b/Koha/Template/Plugin/Branches.pm >@@ -45,6 +45,11 @@ sub GetName { > return $branchname; > } > >+sub GetLoggedInBranch { >+ my ($self) = @_; >+ return Koha::Libraries->find( $self->GetLoggedInBranchcode ); >+} >+ > sub GetLoggedInBranchcode { > my ($self) = @_; > >diff --git a/admin/branches.pl b/admin/branches.pl >index b6d55ea9ee1..0d084f26aec 100755 >--- a/admin/branches.pl >+++ b/admin/branches.pl >@@ -98,6 +98,7 @@ if ( $op eq 'add_form' ) { > public > opacuserjs > opacusercss >+ library_color > ); > my $is_a_modif = $input->param('is_a_modif'); > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-open.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-open.inc >index 18b3fe39c1c..564ab68e111 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-open.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/doc-head-open.inc >@@ -33,3 +33,11 @@ > > [% IF ( bidi ) %]<html lang="[% lang | html %]" dir="[% bidi | html %]">[% ELSE %]<html lang="[% lang | html %]">[% END %] > <head> >+[% SET library_color = Branches.GetLoggedInBranch.library_color %] >+[% IF library_color %] >+ <style> >+ :root { >+ --library-color: [% library_color %] >+ } >+ </style> >+[% END %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt >index f1d875fa3eb..0ff4c8a4231 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branches.tt >@@ -368,6 +368,12 @@ > <a class="collapse-textarea" id="collapse_opacusercss" data-target="opacusercss" data-syntax="css" style="display:none" href="#">Collapse<br /></a> > </div> > </li> >+ <li> >+ <label for="colorpicker">Primary branch color: </label> >+ <input type="color" name="colorpicker" id="colorpicker" value="[% library.library_color | html %]" /> >+ <input type="text" name="library_color" id="library_color" readonly="readonly" size="10" maxlength="16" value="[% library.library_color | html %]" /> >+ <a href="#" class="clear_color"><i class="fa fa-fw fa-trash-can"></i> Clear</a> >+ </li> > </ol> > </fieldset> > [% IF additional_fields.size %] >@@ -609,6 +615,10 @@ > <span>Library hours not set</span> > [% END %] > </li> >+ <li> >+ <span class="label">Library color</span> >+ [% library.library_color | html %] >+ </li> > </ol> > </div> > <!-- /.rows --> >@@ -880,6 +890,15 @@ > } > $( "#" + target ).hide(); > }); >+ $("#colorpicker").on("change", function(){ >+ let library_color = this.value; >+ $("#library_color").val( library_color ); >+ }); >+ >+ $(".clear_color").on("click", function(e){ >+ e.preventDefault(); >+ $("#library_color, #colorpicker").val( "" ); >+ }); > </script> > [% END %] > >-- >2.39.5
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 37054
:
167577
|
167578
|
167579
|
167590
|
167595
|
167596
|
167597
|
167598
|
167609
|
167612
|
167613
|
167614
|
167615
|
167616
|
167618
|
167625
|
171221
|
171222
|
171223
|
171224
|
171225
|
171226
|
175991
|
175992
|
175993
|
175994
|
175995
|
175996
|
176014
|
176015
|
176016
|
176615
|
176616
|
180329
|
180330
| 180331 |
180332
|
180333
|
180334