Bug 34131: Update breadcrumbs and side bar
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / plugins / plugins-home.tt
1 [% USE raw %]
2 [% USE Asset %]
3 [% USE KohaDates %]
4 [% SET footerjs = 1 %]
5 [% INCLUDE 'doc-head-open.inc' %]
6 <title>Plugins &rsaquo; Tools &rsaquo; Koha </title>
7 [% INCLUDE 'doc-head-close.inc' %]
8 </head>
9
10 <body id="plugins_plugins_home" class="plugins">
11 [% WRAPPER 'header.inc' %]
12     [% INCLUDE 'prefs-admin-search.inc' %]
13 [% END %]
14
15 [% WRAPPER 'sub-header.inc' %]
16     [% WRAPPER breadcrumbs %]
17         [% WRAPPER breadcrumb_item %]
18             [% IF ( method == 'tool' ) %]
19                 <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a>
20             [% ELSE %]
21                 <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a>
22             [% END %]
23         [% END %]
24         [% WRAPPER breadcrumb_item bc_active= 1 %]
25             <span>Plugins</span>
26         [% END %]
27     [% END #/ WRAPPER breadcrumbs %]
28 [% END #/ WRAPPER sub-header.inc %]
29
30 <div class="main container-fluid">
31     <div class="row">
32         <div class="col-sm-10 col-sm-push-2">
33             <main>
34                     <h1>Plugins</h1>
35
36                 <div class="details">
37
38                     [% IF ( CAN_user_plugins_manage ) %]
39                         <div class="btn-toolbar" id="toolbar">
40                             <a href="/cgi-bin/koha/plugins/plugins-upload.pl" id="upload_plugin" class="btn btn-default"><i class="fa fa-upload"></i> Upload plugin</a>
41
42                             <div class="btn-group">
43                                 <button class="btn btn-default dropdown-toggle" data-toggle="dropdown"><i class="fa-solid fa-eye"></i> View plugins by class <span class="caret"></span></button>
44                                 <ul class="dropdown-menu">
45                                     <li><a href="/cgi-bin/koha/plugins/plugins-home.pl">View all plugins</a></li>
46                                     <li><a href="/cgi-bin/koha/plugins/plugins-home.pl?method=report">View report plugins</a></li>
47                                     <li><a href="/cgi-bin/koha/plugins/plugins-home.pl?method=tool">View tool plugins</a></li>
48                                     <li><a href="/cgi-bin/koha/plugins/plugins-home.pl?method=to_marc">View MARC conversion plugins</a></li>
49                                     <li><a href="/cgi-bin/koha/plugins/plugins-home.pl?method=opac_online_payment">View online payment plugins</a></li>
50                                     <li><a href="/cgi-bin/koha/plugins/plugins-home.pl?method=intranet_catalog_biblio_enhancements">View bibliographic record enhancement plugins for the staff interface</a></li>
51                                     <li><a href="/cgi-bin/koha/plugins/plugins-home.pl?method=ill_availability_services">View ILL availability plugins</a></li>
52                                 </ul>
53                             </div>
54
55                             [% IF can_search %]
56                             <div class="btn-group">
57                                 <form class="form-inline" id="plugin-search-form">
58                                     <div class="form-group">
59                                         <div class="input-group">
60                                             <input type="text" class="form-control" name="plugin-search" id="plugin-repo-search" placeholder="Search for plugins" value="[% search_term | html %]"/>
61                                             <div class="input-group-btn">
62                                                 <button class="btn btn-default" type="button" id="plugin-search-button"><i class="fa fa-search"></i></button>
63                                             </div>
64                                         </div>
65                                     </div>
66                                 </form>
67                             </div>
68                             [% END %]
69                         </div>
70                     [% END %]
71
72                     [% IF search_results %]
73                         <h2>Search results</h2>
74                         <div class="page-section">
75                             <table class="table table-striped">
76                                 <thead>
77                                     <tr>
78                                         <th>Name</th>
79                                         <th>Description</th>
80                                         <th>Organization</th>
81                                         <th>Latest version</th>
82                                         <th>&nbsp;</th>
83                                     </tr>
84                                 </thead>
85
86                                 [% FOREACH sr IN search_results %]
87                                     <tr>
88                                         <td><a href="[% sr.result.html_url | url %]" target="_new">[% sr.result.name | html %]</a></td>
89                                         <td>[% sr.result.description | html %]</td>
90                                         <td>[% sr.repo.name | html %]</td>
91                                         <td>[% sr.result.tag_name | html %]</td>
92                                         <td><a class="btn btn-default btn-sm btn-install-plugin" href="/cgi-bin/koha/plugins/plugins-upload.pl?op=Upload&uploadfile=[% sr.result.install_name | uri %]&uploadlocation=[% sr.result.install_url | uri %]"><i class="fa fa-download"></i> Install</a></td>
93                                     </tr>
94                                 [% END %]
95                             </table>
96                         </div><!-- /.page-section -->
97                     [% END %]
98
99                     [% UNLESS ( plugins ) %]
100                         [% UNLESS ( method ) %]
101                             <div class="dialog message">No plugins installed</div>
102                         [% ELSE %]
103                             [% IF method == 'tool' %]
104                                 <div class="dialog message">No plugins that can be used as a tool are installed</div>
105                             [% ELSIF method == 'report' %]
106                                 <div class="dialog message">No plugins that can create a report are installed</div>
107                             [% ELSIF method == 'to_marc' %]
108                                 <div class="dialog message">No plugins that can convert files to MARC records are installed</div>
109                             [% ELSIF method == 'opac_online_payment' %]
110                                 <div class="dialog message">No plugins that can process online payments via the public catalog are installed</div>
111                             [% ELSIF method == 'intranet_catalog_biblio_enhancements' %]
112                                 <div class="dialog message">No plugins that can enhance the bibliographic records in the staff interface are installed</div>
113                             [% ELSE %]
114                                 <div class="dialog message">Unknown plugin type <em>[% method | html %]</em></div>
115                             [% END %]
116                         [% END %]
117                     [% ELSE %]
118                         <div class="page-section">
119                             <table id="installed_plugins">
120                                 <thead>
121                                     <tr>
122                                         <th>Name</th>
123                                         <th>Description</th>
124                                         <th>Author</th>
125                                         <th>Plugin version</th>
126                                         <th>Minimum Koha version</th>
127                                         <th>Maximum Koha version</th>
128                                         <th>Last updated</th>
129                                         <th>Status</th>
130                                         [% IF ( CAN_user_plugins_configure || CAN_user_plugins_manage || CAN_user_plugins_report || CAN_user_plugins_tool ) %]
131                                             <th class="noExport NoSort">Actions</th>
132                                         [% END %]
133                                     </tr>
134                                 </thead>
135
136                                 [% FOREACH plugin IN plugins %]
137                                     [% IF plugin.error %]
138                                     <tr class="warn">
139                                         <td>
140                                             <strong>[% plugin.name | html %]</strong>
141                                             <span class="label label-warning">ERRORS</span>
142                                         </td>
143                                         [% IF ( CAN_user_plugins_configure || CAN_user_plugins_manage || CAN_user_plugins_report || CAN_user_plugins_tool ) %]
144                                         <td colspan="7">Error found whilst attempting to load plugin</td>
145                                         [% ELSE %]
146                                         <td colspan="6">Error found whilst attempting to load plugin</td>
147                                         [% END %]
148                                     </tr>
149                                     [% ELSE %]
150                                     <tr>
151                                         <td>
152                                             <strong>[% plugin.metadata.name | html %]</strong>
153                                         </td>
154                                         <td>
155                                             [% plugin.metadata.description | html %]
156
157                                             [% IF ( plugin.metadata.minimum_version && koha_version < plugin.metadata.minimum_version ) %]
158                                                 <div class="dialog alert">
159                                                     Warning: This plugin was written for a newer version of Koha. Use at your own risk.
160                                                 </div>
161                                             [% END %]
162
163                                             [% IF ( plugin.metadata.maximum_version && koha_version > plugin.metadata.maximum_version ) %]
164                                                 <div class="dialog alert">
165                                                     Warning: This plugin was written for an older version of Koha. Use at your own risk.
166                                                 </div>
167                                             [% END %]
168                                         </td>
169                                         <td>[% plugin.metadata.author | html %]</td>
170                                         <td>[% plugin.metadata.version | html %]</td>
171                                         <td>[% plugin.metadata.minimum_version | html %]</td>
172                                         <td>[% plugin.metadata.maximum_version | html %]</td>
173                                         <td>[% plugin.metadata.date_updated | $KohaDates %]</td>
174                                         <td>
175                                             [% IF ( plugin.is_enabled ) %]
176                                                 <span class="bg-success">Enabled</span>
177                                             [% ELSE %]
178                                                 <span class="bg-warning">Disabled</span>
179                                             [% END %]
180                                         </td>
181                                         [% IF ( CAN_user_plugins_configure || CAN_user_plugins_manage || CAN_user_plugins_report || CAN_user_plugins_tool ) %]
182                                             <td class="actions">
183                                                 <div class="btn-group dropup">
184                                                     <a class="btn btn-default btn-xs dropdown-toggle" id="pluginactions[% plugin.class | html %]" role="button" data-toggle="dropdown" href="#">
185                                                        Actions <b class="caret"></b>
186                                                     </a>
187                                                     <ul class="dropdown-menu pull-right" role="menu" aria-labelledby="pluginactions[% plugin.class | html %]">
188                                                         [% IF ( CAN_user_plugins_report ) %]
189                                                             [% IF plugin.can('report') %]
190                                                                 <li><a href="/cgi-bin/koha/plugins/run.pl?class=[% plugin.class | uri %]&method=report"><i class="fa fa-table fa-fw"></i> Run report</a></li>
191                                                             [% END %]
192                                                         [% END %]
193
194                                                         [% IF ( CAN_user_plugins_tool ) %]
195                                                             [% IF plugin.can('tool') %]
196                                                                 <li><a href="/cgi-bin/koha/plugins/run.pl?class=[% plugin.class | uri %]&method=tool"><i class="fa fa-wrench fa-fw"></i> Run tool</a></li>
197                                                             [% END %]
198                                                         [% END %]
199
200                                                         [% IF ( CAN_user_plugins_configure ) %]
201                                                             [% IF plugin.can('configure') %]
202                                                                 <li><a href="/cgi-bin/koha/plugins/run.pl?class=[% plugin.class | uri %]&method=configure"><i class="fa fa-cog fa-fw"></i> Configure</a></li>
203                                                             [% END %]
204                                                         [% END %]
205                                                         [% IF ( CAN_user_plugins_manage ) %]
206                                                                 <li><a class="uninstall_plugin" data-plugin-name="[% plugin.metadata.name | html %]" href="/cgi-bin/koha/plugins/plugins-uninstall.pl?class=[% plugin.class | html %]"><i class="fa fa-trash-can fa-fw"></i> Uninstall</a></li>
207                                                             [% IF ( plugin.is_enabled ) %]
208                                                                     <li><a class="enable_plugin" data-plugin-name="[% plugin.metadata.name | html %]" href="/cgi-bin/koha/plugins/plugins-enable.pl?class=[% plugin.class | html %]&method=disable"><i class="fa fa-pause fa-fw"></i> Disable</a></li>
209                                                             [% ELSE %]
210                                                                     <li><a class="enable_plugin" data-plugin-name="[% plugin.metadata.name | html %]" href="/cgi-bin/koha/plugins/plugins-enable.pl?class=[% plugin.class | html %]&method=enable"><i class="fa fa-play fa-fw"></i> Enable</a></li>
211                                                             [% END %]
212                                                         [% END %]
213                                                     </ul>
214                                                 </div>
215                                             </td>
216                                         [% END %]
217                                     </tr>
218                                     [% END %]
219                                 [% END %]
220                             </table>
221                         </div><!-- /.page-section -->
222                     [% END %]
223                 </div>
224
225             </main>
226         </div> <!-- /.col-sm-10.col-sm-push-2 -->
227
228         <div class="col-sm-2 col-sm-pull-10">
229             <aside>
230                 [% IF ( method == 'tool' ) %]
231                     [% INCLUDE 'tools-menu.inc' %]
232                 [% ELSE %]
233                     [% INCLUDE 'admin-menu.inc' %]
234                 [% END %]
235             </aside>
236         </div> <!-- /.col-sm-2.col-sm-pull-10 -->
237      </div> <!-- /.row -->
238
239 [% MACRO jsinclude BLOCK %]
240     [% Asset.js("js/tools-menu.js") | $raw %]
241     [% INCLUDE 'calendar.inc' %]
242     [% INCLUDE 'datatables.inc' %]
243     [% INCLUDE 'columns_settings.inc' %]
244     <script>
245         $(document).ready(function(){
246             $(".uninstall_plugin").on("click", function(){
247                 $(".dropdown").removeClass("open");
248                 var plugin_name = $(this).data("plugin-name");
249                 return confirmDelete( _("Are you sure you want to uninstall the plugin %s?").format( plugin_name ) );
250             });
251
252             $("#plugin-search-button").on("click", function(){
253                 $("#plugin-search-form").submit();
254             });
255
256             KohaTable("installed_plugins", {
257                 "bPaginate": false
258             });
259         });
260     </script>
261 [% END %]
262
263 [% INCLUDE 'intranet-bottom.inc' %]