Bug 27673: Replace YAML with YAML::XS
[koha-ffzg.git] / Koha / Template / Plugin / TablesSettings.pm
1 package Koha::Template::Plugin::TablesSettings;
2
3 # This file is part of Koha.
4 #
5 # Copyright BibLibre 2014
6 #
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20 =head1 NAME
21
22 Koha::Template::Plugin::TablesSettings
23
24 =head2 SYNOPSYS
25
26     [% USE TablesSettings %]
27
28     . . .
29
30     [% UNLESS TablesSettings.is_hidden( 'module', 'page', 'table', 'column') %]
31         <th id="column" data-colname="column">Column title</th>
32     [% END %]
33
34     . . .
35
36     [% UNLESS TablesSettings.is_hidden( 'module', 'page', 'table', 'column') %]
37         <td>[% row.column %]</td>
38     [% END %]
39
40     . . .
41
42     <script>
43         var columns_settings = [% TablesSettings.GetColumns( 'module', 'page', 'table', 'json' ) | $raw %];
44         var table = KohaTable("id", { "bAutoWidth": false }, columns_settings );
45     </script>
46
47 This plugin allows to get the column configuration for a table. It should be used both in table markup
48 and as the input for datatables visibility settings to take full effect.
49
50 =cut
51
52 use Modern::Perl;
53
54 use Template::Plugin;
55 use base qw( Template::Plugin );
56
57 use JSON qw( to_json );
58
59 use C4::Context qw( config );
60 use C4::Utils::DataTables::TablesSettings;
61
62 =head1 FUNCTIONS
63
64 =head2 GetColumns
65
66     <script>
67         var tables_settings = [% TablesSettings.GetColumns( 'module', 'page', 'table', 'json' ) | $raw %];
68         var table = KohaTable("id", { "bAutoWidth": false }, tables_settings );
69     </script>
70
71 Used to get the full column settings configuration for datatables, usually requires a format of 'json' to pass into
72 datatables instantiator.
73
74 =cut
75
76 =head3 GetColumns
77
78 var columns_settings = [% TablesSettings.GetColumns( module, page, table 'json' ) | $raw%]
79
80 This method is usually be used to retrieve the columns settings for a DataTable init.
81
82 So the 'json' format will be provided and the columns_settings JS var will be
83 passed as argument of the constructor.
84
85 =cut
86
87 sub GetColumns {
88     my ( $self, $module, $page, $table, $format ) = @_;
89     $format //= q{};
90
91     my $columns = C4::Utils::DataTables::TablesSettings::get_columns( $module, $page, $table );
92
93     return $format eq 'json'
94         ? to_json( $columns )
95         : $columns
96 }
97
98 =head2 is_hidden
99
100     [% UNLESS TablesSettings.is_hidden( 'module', 'page', 'table', 'column') %]
101         <th id="column" data-colname="column">Column title</th>
102     [% END %]
103
104 Used to fetch an individual columns display status so we can fully hide a column in the markup for cases where
105 it may contain confidential information and should be fully hidden rather than just hidden from display.
106
107 =cut
108
109 sub is_hidden {
110     my ( $self, $module, $page, $table, $column_name ) = @_;
111     my $columns = C4::Utils::DataTables::TablesSettings::get_columns( $module, $page, $table );
112     foreach my $keys(@$columns){
113         if($keys->{'columnname'} eq $column_name){
114             return $keys->{'is_hidden'};
115         }
116     }
117     return 0;
118 }
119
120 =head3 GetTableSettings
121
122 [% SET table_settings = GetTableSettings( module, page, table ) %]
123
124 This method is used to retrieve the tables settings (like table_settings.default_display_length and
125 table_settings.default_sort_order).
126 They can be passed to the DataTable constructor (for iDisplayLength and order parameters)
127
128 =cut
129
130 sub GetTableSettings {
131     my ( $self, $module, $page, $table, $format ) = @_;
132     $format //= q{};
133
134     my $settings = C4::Utils::DataTables::TablesSettings::get_table_settings( $module, $page, $table );
135
136     return $format eq 'json'
137         ? to_json( $settings || {} )
138         : $settings
139 }
140
141 1;