Bug 22880: (QA follow-up) Pass lang instead of news_lang in masthead
[koha.git] / koha-tmpl / opac-tmpl / bootstrap / en / includes / masthead.inc
blobcef392338a42fcace5cc21bae3eaca10c42afa02
1 [% USE raw %]
2 [% USE Koha %]
3 [% USE Branches %]
4 [% USE Categories %]
5 [% USE KohaNews %]
6 [% PROCESS 'html_helpers.inc' %]
7 [% SET OpacLangSelectorMode = Koha.Preference('OpacLangSelectorMode') %]
8 [% SET OpacHeader = KohaNews.get( location => "opacheader", lang => lang, library => branchcode, blocktitle => 0 ) %]
10 <div id="wrap">
11     <div id="header-region" class="noprint">
12         <div class="navbar navbar-inverse navbar-static-top">
13             <div class="navbar-inner">
14                 <div class="container-fluid">
15                     <h1 id="logo">
16                         <a class="brand" href="/cgi-bin/koha/opac-main.pl">
17                             [% IF ( LibraryNameTitle ) %]
18                                 [% LibraryNameTitle | html %]
19                             [% ELSE %]
20                                 Koha online
21                             [% END %]
22                         </a>
23                     </h1>
24                     [% IF ( Koha.Preference( 'opacbookbag' ) == 1 ) %]
25                         <div id="cartDetails" class="cart-message">Your cart is empty.</div>
26                     [% END %]
27                     <ul class="nav">
28                         [% IF ( Koha.Preference( 'opacbookbag' ) == 1 ) %]
29                             <li>
30                                 <a href="#" title="Collect items you are interested in" id="cartmenulink" role="button">
31                                     <i id="carticon" class="fa fa-shopping-cart fa-icon-white"></i> <span class="cartlabel">Cart</span> <span id="basketcount"></span>
32                                 </a>
33                             </li>
34                         [% END %]
35                         [% IF ( Koha.Preference( 'virtualshelves' ) == 1 ) && ( Koha.Preference( 'opacbookbag' ) == 1 ) %]
36                             <li class="divider-vertical"></li>
37                         [% END %]
38                         [% IF ( Koha.Preference( 'virtualshelves' ) == 1 ) %]
39                             <li class="dropdown">
40                                 <a href="#" title="Show lists" class="dropdown-toggle" id="listsmenu" data-toggle="dropdown" role="button"><i class="fa fa-list fa-icon-white"></i> <span class="listslabel">Lists</span> <b class="caret"></b></a>
41                                 <ul aria-labelledby="listsmenu" role="menu" class="dropdown-menu">
42                                 [% IF some_public_shelves.count %]
43                                     <li role="presentation"><a href="/cgi-bin/koha/opac-shelves.pl?op=list&amp;category=2" tabindex="-1" role="menuitem"><strong>Public lists</strong></a></li>
44                                     [% SET number_of_public_shelves = 0 %]
45                                     [% FOREACH s IN some_public_shelves %]
46                                         <li role="presentation"><a href="/cgi-bin/koha/opac-shelves.pl?op=view&amp;shelfnumber=[% s.shelfnumber | uri %]&amp;sortfield=[% s.sortfield | uri %]" tabindex="-1" role="menuitem">[% s.shelfname | html %]</a></li>
47                                         [% SET number_of_public_shelves = number_of_public_shelves + 1 %]
48                                         [% IF number_of_public_shelves >= 10 %][% LAST %][% END %]
49                                     [% END %]
50                                     [% IF some_public_shelves > 10 %]
51                                         <li role="presentation"><a href="/cgi-bin/koha/opac-shelves.pl?op=list&amp;category=2" tabindex="-1" role="menuitem" class="listmenulink">View All</a></li>
52                                     [% END %]
53                                 [% END %]
54                                 [% IF some_public_shelves.count > 0 %]
55                                     <li class="divider" role="presentation"></li>
56                                 [% END %]
57                                 [% IF Koha.Preference( 'opacuserlogin' ) == 1 %]
58                                     <li role="presentation"><a href="/cgi-bin/koha/opac-shelves.pl?op=list&amp;category=1" tabindex="-1" role="menuitem"><strong>Your lists</strong></a></li>
59                                     [% IF loggedinusername %]
60                                         [% IF some_private_shelves.count %]
61                                             [% SET number_of_private_shelves = 0 %]
62                                             [% FOREACH s IN some_private_shelves %]
63                                                 <li role="presentation"><a href="/cgi-bin/koha/opac-shelves.pl?op=view&amp;shelfnumber=[% s.shelfnumber | uri %]&amp;sortfield=[% s.sortfield | uri %]" tabindex="-1" role="menuitem">[% s.shelfname | html %]</a></li>
64                                                 [% SET number_of_private_shelves = number_of_private_shelves + 1 %]
65                                                 [% IF number_of_private_shelves >= 10 %][% LAST %][% END %]
66                                             [% END %]
67                                             [% IF some_private_shelves > 10 %]
68                                                 <li role="presentation"><a href="/cgi-bin/koha/opac-shelves.pl?op=list&amp;category=1" tabindex="-1" role="menuitem" class="listmenulink">View All</a></li>
69                                             [% END %]
70                                         [% ELSE %]
71                                             <li role="presentation"><a href="#" tabindex="-1" class="menu-inactive" role="menuitem">No private lists</a></li>
72                                         [% END %]
73                                             <li role="presentation"><a href="/cgi-bin/koha/opac-shelves.pl?op=add_form" tabindex="-1" role="menuitem" class="listmenulink">New list</a></li>
74                                     [% ELSE %]
75                                         <li role="presentation"><a href="/cgi-bin/koha/opac-shelves.pl?op=add_form" tabindex="-1" class="menu-inactive" role="menuitem">Log in to create your own lists</a></li>
76                                     [% END # / IF loggedinusername %]
77                                 [% END # / IF opacuserlogin %]
78                                 </ul> <!-- / .dropdown-menu -->
79                             </li> <!-- / .dropdown -->
80                         [% END # / IF virtualshelves %]
81                     </ul> <!-- / .nav -->
83                     [% IF Koha.Preference( 'opacuserlogin' ) == 1 ||  Koha.Preference( 'EnableOpacSearchHistory') || Koha.Preference( 'opaclanguagesdisplay' ) %]
85                         <div id="members" class="pull-right">
86                             [% IF ( Koha.Preference( 'opaclanguagesdisplay' ) ) %]
87                                 [% INCLUDE 'masthead-langmenu.inc' %]
88                             [% END %]
89                             <ul class="nav">
90                                 <li class="dropdown">
91                                     [% IF ( Koha.Preference( 'opacuserlogin' ) == 1 ) %]
92                                         [% IF ( loggedinusername ) %]
93                                             <a href="#" class="dropdown-toggle" id="user-menu" data-toggle="dropdown" role="button">
94                                                 <i class="fa fa-user fa-icon-white fa-fw"></i>
95                                                 <span class="userlabel">Welcome, [% INCLUDE 'patron-title.inc' patron = logged_in_user no_html = 1 %]</span>
96                                                 <b class="caret"></b>
97                                             </a>
98                                         [% ELSE %]
99                                             [% IF Koha.Preference('casAuthentication') %]
100                                                 [%# CAS authentication is too complicated for modal window %]
101                                                     <a class="login-link" href="/cgi-bin/koha/opac-user.pl"><i class="fa fa-user fa-icon-white fa-fw"></i> <span class="userlabel">Log in to your account</span></a>
102                                             [% ELSIF ( Koha.Preference('GoogleOpenIDConnect') == 1 ) %]
103                                                 <a class="login-link" href="/cgi-bin/koha/svc/auth/googleopenidconnect" role="button" data-toggle="modal"><i class="fa fa-user fa-icon-white fa-fw"></i> <span class="userlabel">Log in to your account</span></a>
104                                             [% ELSE %]
105                                                 <a href="/cgi-bin/koha/opac-user.pl" class="login-link loginModal-trigger" role="button" data-toggle="modal"><i class="fa fa-user fa-icon-white fa-fw"></i> <span class="userlabel">Log in to your account</span></a>
106                                             [% END %]
107                                         [% END %]
108                                     [% END %]
110                                     [% IF ( Koha.Preference( 'opacuserlogin' ) == 1 && loggedinusername ) %]
111                                         <ul aria-labelledby="user-menu" role="menu" class="dropdown-menu dropdown-menu-right">
112                                             <li role="presentation">
113                                                 <div id="loggedinuser-menu">
114                                                     <p>
115                                                         <a class="login-link" href="/cgi-bin/koha/opac-user.pl"><span class="loggedinusername" data-borrowernumber="[% logged_in_user.borrowernumber | html %]" data-branchcode="[% logged_in_user.branchcode | html %]" >Your account</span></a>
116                                                     </p>
117                                                     [% IF Koha.Preference( 'EnableOpacSearchHistory' ) %]
118                                                         <p class="search_history">
119                                                             <a tabindex="-1" role="menuitem" class="login-link" href="/cgi-bin/koha/opac-search-history.pl" title="View your search history">Search history</a>
120                                                             <span class="divider-vertical"></span>
121                                                             <a class="logout clearsh" href="/cgi-bin/koha/opac-search-history.pl?action=delete" title="Delete your search history"><i class="fa fa-trash"></i> Clear</a>
122                                                         </p>
123                                                     [% END %]
124                                                     <p>
125                                                         <a tabindex="-1" role="menuitem" class="logout" id="logout" href="/cgi-bin/koha/opac-main.pl?logout.x=1">
126                                                         Log out</a>
127                                                     </p>
128                                                 </div>
129                                             </li>
130                                         </ul>
131                                     [% END %]
132                                 </li>
133                                 [% IF ( !Koha.Preference( 'opacuserlogin') || !loggedinusername ) %]
134                                     [% IF Koha.Preference( 'EnableOpacSearchHistory' ) %]
135                                         <li class="search_history">
136                                             <a href="/cgi-bin/koha/opac-search-history.pl" title="View your search history">Search history</a>
137                                             <span class="divider-vertical"></span>
138                                             <a class="logout clearsh" href="/cgi-bin/koha/opac-search-history.pl?action=delete" title="Delete your search history"><i class="fa fa-trash"></i> Clear</a>
139                                         </li>
140                                     [% END %]
141                                 [% END %]
142                             </ul>
143                         </div> <!-- /members -->
144                     [% END # IF opacuserlogin || EnableOpacSearchHistory || opaclanguagesdisplay %]
146                 </div> <!-- /container-fluid -->
147             </div> <!-- /navbar-inner -->
148         </div> <!-- /navbar -->
150         [% IF ( OpacHeader ) %]
151             <div class="container-fluid">
152                 <div class="row-fluid">
153                     <div id="opacheader">
154                         [% PROCESS koha_news_block news => OpacHeader %]
155                     </div>
156                 </div>
157             </div>
158         [% END %]
160     </div> <!-- / header-region -->
162     <div class="container-fluid">
163         <div class="row-fluid">
164             <div id="opac-main-search">
165             <div class="span12">
166                 [% IF ( OpacPublic ) %]
167                     [% UNLESS ( advsearch ) %]
168                         [% IF ( Koha.Preference( 'OpacAddMastheadLibraryPulldown' ) == 1 ) %]
169                             <div class="mastheadsearch librarypulldown">
170                         [% ELSE %]
171                             <div class="mastheadsearch">
172                         [% END %]
173                         [% IF Koha.Preference('OpacCustomSearch') == '' %]
174                             <form name="searchform" method="get" action="/cgi-bin/koha/opac-search.pl" id="searchform" class="form-inline">
175                                 <label for="masthead_search"> Search
176                                     [% UNLESS ( Koha.Preference( 'OpacAddMastheadLibraryPulldown' ) == 1 ) %]
177                                         [% IF ( mylibraryfirst ) %]
178                                             (in [% Branches.GetName( mylibraryfirst ) | html %] only)
179                                         [% END %]
180                                     [% END %]
181                                 </label>
183                                 <select name="idx" id="masthead_search">
184                                 [% IF ( ms_kw ) %]
185                                     <option selected="selected" value="">Library catalog</option>
186                                 [% ELSE %]
187                                     <option value="">Library catalog</option>
188                                 [% END # /ms_kw %]
189                                 [% IF ( ms_ti ) %]
190                                     <option selected="selected" value="ti">Title</option>
191                                 [% ELSE %]
192                                     <option value="ti">Title</option>
193                                 [% END # /ms_ti %]
194                                 [% IF ( ms_au ) %]
195                                     <option selected="selected" value="au">Author</option>
196                                 [% ELSE %]
197                                     <option value="au">Author</option>
198                                 [% END # /ms_au%]
199                                 [% IF ( ms_su ) %]
200                                     <option selected="selected" value="su">Subject</option>
201                                 [% ELSE %]
202                                     <option value="su">Subject</option>
203                                 [% END # /ms_su %]
204                                 [% IF ( ms_nb ) %]
205                                     <option selected="selected" value="nb">ISBN</option>
206                                 [% ELSE %]
207                                     <option value="nb">ISBN</option>
208                                 [% END # /ms_nb%]
209                                 [% IF ( ms_ns ) %]
210                                     <option selected="selected" value="ns">ISSN</option>
211                                 [% ELSE %]
212                                     <option value="ns">ISSN</option>
213                                 [% END # /ms_ns%]
214                                 [% IF ( ms_se ) %]
215                                     <option selected="selected" value="se">Series</option>
216                                 [% ELSE %]
217                                     <option value="se">Series</option>
218                                 [% END # /ms_se %]
219                                 [% IF ( Koha.Preference('OPACNumbersPreferPhrase') ) %]
220                                     [% IF ( ms_callnumcommaphr ) %]
221                                         <option selected="selected" value="callnum,phr">Call number</option>
222                                     [% ELSE %]
223                                         <option value="callnum,phr">Call number</option>
224                                     [% END #/ms_callnumcommaphr %]
225                                 [% ELSE %]
226                                     [% IF ( ms_callnum ) %]
227                                         <option selected="selected" value="callnum">Call number</option>
228                                     [% ELSE %]
229                                         <option value="callnum">Call number</option>
230                                     [% END # /ms_callnum %]
231                                 [% END # /IF OPACNumbersPreferPhrase %]
232                                 </select>
234                                 [% UNLESS ( Koha.Preference( 'OpacAddMastheadLibraryPulldown' ) == 1 ) %]
235                                     <div class="input-append nolibrarypulldown">
236                                 [% END %]
237                                 [% IF ( ms_value ) %]
238                                     <input type="text" title="Type search term" class="transl1" id = "translControl1" name="q" value="[% ms_value | html %]" /><span id="translControl"></span>
239                                 [% ELSE %]
240                                     <input type="text" title="Type search term" class="transl1" id = "translControl1" name="q" /><span id="translControl"></span>
241                                 [% END # /ms_value %]
243                                 [% UNLESS ( Koha.Preference( 'OpacAddMastheadLibraryPulldown' ) == 1 ) %]
244                                     <button type="submit" id="searchsubmit" class="btn btn-primary">Go</button>
245                                     </div>
246                                 [% END %]
248                                 [% IF ( Koha.Preference( 'OpacAddMastheadLibraryPulldown' ) == 1 ) %]
249                                     <div class="input-append">
250                                         <select name="branch_group_limit" id="select_library">
251                                             <option value="">All libraries</option>
253                                             [% IF LibrarySearchGroups %]<optgroup label="Libraries">[% END %]
255                                             [% FOREACH library IN Branches.all( selected => opac_name ) %]
256                                                 [% IF library.selected %]
257                                                     <option selected="selected" value="branch:[% library.branchcode | html %]">[% library.branchname | html %]</option>
258                                                 [% ELSE %]
259                                                     <option value="branch:[% library.branchcode | html %]">[% library.branchname | html %]</option>
260                                                 [% END %]
261                                             [% END %]
263                                             [% IF LibrarySearchGroups %]
264                                                 </optgroup>
265                                                 <optgroup label="Groups">
266                                                     [% FOREACH lsg IN LibrarySearchGroups %]
267                                                         [% IF lsg.id == opac_name %]
268                                                             <option selected="selected" value="multibranchlimit-[% lsg.id | html %]">[% lsg.title | html %]</option>
269                                                         [% ELSE %]
270                                                             <option value="multibranchlimit-[% lsg.id | html %]">[% lsg.title | html %]</option>
271                                                         [% END # / bc.selected %]
272                                                     [% END %]
273                                                 </optgroup>
274                                             [% END # / BranchCategoriesLoop %]
275                                         </select>
276                                         <button type="submit" id="searchsubmit" class="btn btn-primary">Go</button>
277                                     </div>
278                                 [% ELSE %]
279                                     [% IF ( opac_limit_override ) %]
280                                         [% IF ( opac_search_limit ) %]
281                                             [% IF ( multibranchlimit = opac_search_limit.match( 'branch:(multibranchlimit-\d+)' ) ) %]
282                                                 <input name="branch_group_limit" value="[% multibranchlimit.0 | html %]" type="hidden" />
283                                             [% ELSE %]
284                                                 <input name="limit" value="[% opac_search_limit | html %]" type="hidden" />
285                                             [% END %]
286                                         [% END %]
287                                     [% ELSE %]
288                                         [% IF ( mylibraryfirst ) %]
289                                             <input name="limit" value="branch:[% mylibraryfirst | html %]" type="hidden" />
290                                         [% END %]
291                                     [% END # / opac_limit_override %]
292                                 [% END # / OpacAddMastheadLibraryPulldown %]
294                             </form>
295                         [% ELSE # / Koha.Preference('OpacCustomSearch') == '' %]
296                             [% Koha.Preference('OpacCustomSearch') | $raw %]
297                         [% END # / Koha.Preference('OpacCustomSearch') == '' %]
298                         </div> <!-- / .mastheadsearch -->
299                     [% END # / UNLESS advsearch %]
301                     <div class="row-fluid">
302                             <div id="moresearches">
303                                 <ul>
304                                     <li><a href="/cgi-bin/koha/opac-search.pl">Advanced search</a></li>
305                                     [% IF ( Koha.Preference( 'UseCourseReserves' ) == 1 ) %]<li><a href="/cgi-bin/koha/opac-course-reserves.pl">Course reserves</a></li>[% END %]
306                                     [% IF Koha.Preference( 'OpacBrowser' ) == 1 %]<li><a href="/cgi-bin/koha/opac-browser.pl">Browse by hierarchy</a></li>[% END %]
307                                     [% IF Koha.Preference( 'OpacAuthorities' ) == 1 %]<li><a href="/cgi-bin/koha/opac-authorities-home.pl">Authority search</a></li>[% END %]
308                                     [% IF ( ( Koha.Preference( 'opacuserlogin' ) == 1 ) && ( Koha.Preference( 'reviewson' ) == 1 ) && ( Koha.Preference( 'OpacShowRecentComments' ) == 1 ) ) %]<li><a href="/cgi-bin/koha/opac-showreviews.pl">Recent comments</a></li>[% END %]
309                                     [% IF Koha.Preference( 'TagsEnabled' ) == 1 %]<li><a href="/cgi-bin/koha/opac-tags.pl">Tag cloud</a></li>[% END %]
310                                     [% IF Koha.Preference( 'OpacCloud' ) == 1 %]<li><a href="/cgi-bin/koha/opac-tags_subject.pl">Subject cloud</a></li>[% END %]
311                                     [% IF Koha.Preference( 'OpacTopissue' ) == 1 %]<li><a href="/cgi-bin/koha/opac-topissues.pl">Most popular</a></li>[% END %]
312                                     [% IF Koha.Preference('SearchEngine') == 'Elasticsearch' && Koha.Preference( 'OpacBrowseSearch' ) == 1 %]<li><a href="/cgi-bin/koha/opac-browse.pl">Browse search</a></li>[% END %]
313                                     [% IF Koha.Preference( 'suggestion' ) == 1 %]
314                                         [% IF Koha.Preference( 'AnonSuggestions' ) == 1 %]
315                                             <li><a href="/cgi-bin/koha/opac-suggestions.pl">Purchase suggestions</a></li>
316                                         [% ELSIF ( ( Koha.Preference( 'OPACViewOthersSuggestions' ) == 1 ) ) %]
317                                             <li><a href="/cgi-bin/koha/opac-suggestions.pl">Purchase suggestions</a></li>
318                                         [% END %]
319                                     [% END %]
320                                     [% Koha.Preference('OpacMoreSearches') | $raw %]
321                                 </ul>
322                             </div> <!-- /#moresearches -->
323                     </div> <!-- /.row-fluid -->
325                 [% END # / OpacPublic %]
326             </div> <!-- /.span10 -->
327             </div> <!-- /.opac-main-search -->
328         </div> <!-- / .row-fluid -->
329     </div> <!-- /.container-fluid -->
331     <!-- Login form hidden by default, used for modal window -->
332     <div id="loginModal" class="modal hide" tabindex="-1" role="dialog" aria-labelledby="modalLoginLabel" aria-hidden="true">
333         <div class="modal-header">
334             <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">×</button>
335             <h3 id="modalLoginLabel">Log in to your account</h3>
336         </div>
337         <form action="/cgi-bin/koha/opac-user.pl" method="post" name="auth" id="modalAuth">
338             <input type="hidden" name="has-search-query" id="has-search-query" value="" />
339             <div class="modal-body">
340                 [% IF ( shibbolethAuthentication ) %]
341                     [% IF ( invalidShibLogin ) %]
342                         <!-- This is what is displayed if shibboleth login has failed to match a koha user -->
343                         <div class="alert alert-info">
344                             <p>Sorry, your Shibboleth identity does not match a valid library identity. If you have a local login, you may use that below.</p>
345                         </div>
346                     [% ELSE %]
347                         <h4>Shibboleth login</h4>
348                         <p>If you have a Shibboleth account, please <a href="[% shibbolethLoginUrl | $raw %]">click here to login</a>.</p>
349                         <h4>Local Login</h4>
350                     [% END %]
351                 [% END %]
352                 <input type="hidden" name="koha_login_context" value="opac" />
353                 <fieldset class="brief">
354                     <label for="muserid">Login:</label><input type="text" id="muserid" name="userid" />
355                     <label for="mpassword">Password:</label><input type="password" id="mpassword" name="password" />
356                     [% IF Koha.Preference( 'OpacLoginInstructions' ) %]
357                         <div id="nologininstructions-modal" class="nologininstructions">
358                             [% Koha.Preference( 'OpacLoginInstructions' ) | $raw %]
359                         </div>
360                     [% END %]
361                     [% IF Koha.Preference('OpacPasswordChange') && Categories.can_any_reset_password %]
362                         <div id="forgotpassword-modal" class="forgotpassword">
363                             <a href="/cgi-bin/koha/opac-password-recovery.pl">Forgot your password?</a>
364                         </div>
365                     [% END %]
366                     [% IF PatronSelfRegistration && PatronSelfRegistrationDefaultCategory %]
367                         <div id="patronregistration-modal" class="patronregistration">
368                             <p>Don't have an account? <a href="/cgi-bin/koha/opac-memberentry.pl">Register here.</a></p>
369                         </div>
370                     [% END %]
371                 </fieldset>
372             </div>
373             <div class="modal-footer">
374                 <input type="submit" class="btn btn-primary" value="Log in" />
375             </div>
376         </form> <!-- /#auth -->
377     </div>  <!-- /#modalAuth  -->