3 # Copyright 2008 LibLime
4 # Parts copyright 2010 BibLibre
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License along
18 # with Koha; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 use List
::MoreUtils qw
/uniq/;
31 use C4
::Members qw
/GetBorrowercategoryList/;
32 use C4
::Members
::AttributeTypes
;
34 my $script_name = "/cgi-bin/koha/admin/patron-attr-types.pl";
37 my $op = $input->param('op') || '';
40 our ($template, $loggedinuser, $cookie)
41 = get_template_and_user
({template_name
=> "admin/patron-attr-types.tmpl",
45 flagsrequired
=> {parameters
=> 1},
49 $template->param(script_name
=> $script_name);
51 my $code = $input->param("code");
54 if ($op eq "edit_attribute_type") {
55 edit_attribute_type_form
($template, $code);
56 } elsif ($op eq "edit_attribute_type_confirmed") {
57 $display_list = add_update_attribute_type
('edit', $template, $code);
58 } elsif ($op eq "add_attribute_type") {
59 add_attribute_type_form
($template);
60 } elsif ($op eq "add_attribute_type_confirmed") {
61 $display_list = add_update_attribute_type
('add', $template, $code);
62 } elsif ($op eq "delete_attribute_type") {
63 $display_list = delete_attribute_type_form
($template, $code);
64 } elsif ($op eq "delete_attribute_type_confirmed") {
65 delete_attribute_type
($template, $code);
72 unless (C4
::Context
->preference('ExtendedPatronAttributes')) {
73 $template->param(WARNING_extended_attributes_off
=> 1);
75 patron_attribute_type_list
($template);
78 output_html_with_http_headers
$input, $cookie, $template->output;
82 sub add_attribute_type_form
{
86 attribute_type_form
=> 1,
87 confirm_op
=> 'add_attribute_type_confirmed',
88 categories
=> GetBorrowercategoryList
,
90 authorised_value_category_list
($template);
91 pa_classes
($template);
94 sub error_add_attribute_type_form
{
97 $template->param(description
=> $input->param('description'));
99 if ($input->param('repeatable')) {
100 $template->param(repeatable_checked
=> 1);
102 if ($input->param('unique_id')) {
103 $template->param(unique_id_checked
=> 1);
105 if ($input->param('password_allowed')) {
106 $template->param(password_allowed_checked
=> 1);
108 if ($input->param('opac_display')) {
109 $template->param(opac_display_checked
=> 1);
111 if ($input->param('staff_searchable')) {
112 $template->param(staff_searchable_checked
=> 1);
114 if ($input->param('display_checkout')) {
115 $template->param(display_checkout_checked
=> 'checked="checked"');
118 $template->param( category_code
=> $input->param('category_code') );
119 $template->param( class => $input->param('class') );
122 attribute_type_form
=> 1,
123 confirm_op
=> 'add_attribute_type_confirmed',
125 authorised_value_category_list
($template, $input->param('authorised_value_category'));
128 sub add_update_attribute_type
{
130 my $template = shift;
133 my $description = $input->param('description');
137 $attr_type = C4
::Members
::AttributeTypes
->fetch($code);
138 $attr_type->description($description);
140 my $existing = C4
::Members
::AttributeTypes
->fetch($code);
141 if (defined($existing)) {
142 $template->param(duplicate_code_error
=> $code);
143 error_add_attribute_type_form
($template);
146 $attr_type = C4
::Members
::AttributeTypes
->new($code, $description);
147 my $repeatable = $input->param('repeatable');
148 $attr_type->repeatable($repeatable);
149 my $unique_id = $input->param('unique_id');
150 $attr_type->unique_id($unique_id);
153 my $opac_display = $input->param('opac_display');
154 $attr_type->opac_display($opac_display);
155 my $staff_searchable = $input->param('staff_searchable');
156 $attr_type->staff_searchable($staff_searchable);
157 my $authorised_value_category = $input->param('authorised_value_category');
158 $attr_type->authorised_value_category($authorised_value_category);
159 my $password_allowed = $input->param('password_allowed');
160 $attr_type->password_allowed($password_allowed);
161 my $display_checkout = $input->param('display_checkout');
162 $attr_type->display_checkout($display_checkout);
163 $attr_type->category_code($input->param('category_code'));
164 $attr_type->class($input->param('class'));
167 $template->param(edited_attribute_type
=> $attr_type->code());
169 $template->param(added_attribute_type
=> $attr_type->code());
176 sub delete_attribute_type_form
{
177 my $template = shift;
180 my $attr_type = C4
::Members
::AttributeTypes
->fetch($code);
181 my $display_list = 0;
182 if (defined($attr_type)) {
184 delete_attribute_type_form
=> 1,
185 confirm_op
=> "delete_attribute_type_confirmed",
187 description
=> $attr_type->description(),
190 $template->param(ERROR_delete_not_found
=> $code);
193 return $display_list;
196 sub delete_attribute_type
{
197 my $template = shift;
200 my $attr_type = C4
::Members
::AttributeTypes
->fetch($code);
201 if (defined($attr_type)) {
202 if ($attr_type->num_patrons() > 0) {
203 $template->param(ERROR_delete_in_use
=> $code);
204 $template->param(ERROR_num_patrons
=> $attr_type->num_patrons());
206 $attr_type->delete();
207 $template->param(deleted_attribute_type
=> $code);
210 $template->param(ERROR_delete_not_found
=> $code);
214 sub edit_attribute_type_form
{
215 my $template = shift;
218 my $attr_type = C4
::Members
::AttributeTypes
->fetch($code);
220 $template->param(code
=> $code);
221 $template->param(description
=> $attr_type->description());
222 $template->param(class => $attr_type->class());
224 if ($attr_type->repeatable()) {
225 $template->param(repeatable_checked
=> 1);
227 $template->param(repeatable_disabled
=> 1);
228 if ($attr_type->unique_id()) {
229 $template->param(unique_id_checked
=> 1);
231 $template->param(unique_id_disabled
=> 1);
232 if ($attr_type->password_allowed()) {
233 $template->param(password_allowed_checked
=> 1);
235 if ($attr_type->opac_display()) {
236 $template->param(opac_display_checked
=> 1);
238 if ($attr_type->staff_searchable()) {
239 $template->param(staff_searchable_checked
=> 1);
241 if ($attr_type->display_checkout()) {
242 $template->param(display_checkout_checked
=> 'checked="checked"');
244 authorised_value_category_list
($template, $attr_type->authorised_value_category());
245 pa_classes
( $template, $attr_type->class );
247 $template->param ( category_code
=> $attr_type->category_code );
248 $template->param ( category_description
=> $attr_type->category_description );
251 attribute_type_form
=> 1,
252 edit_attribute_type
=> 1,
253 confirm_op
=> 'edit_attribute_type_confirmed',
254 categories
=> GetBorrowercategoryList
,
259 sub patron_attribute_type_list
{
260 my $template = shift;
262 my @attr_types = C4
::Members
::AttributeTypes
::GetAttributeTypes
();
263 my @classes = uniq
( map {$_->{class}} @attr_types );
264 @classes = sort @classes;
267 for my $class (@classes) {
269 for my $attr (@attr_types) {
270 push @items, $attr if $attr->{class} eq $class
272 my $lib = GetAuthorisedValueByCode
( 'PA_CLASS', $class ) || $class;
273 push @attributes_loop, {
279 $template->param(available_attribute_types
=> \
@attributes_loop);
280 $template->param(display_list
=> 1);
283 sub authorised_value_category_list
{
284 my $template = shift;
285 my $selected = @_ ?
shift : '';
287 my $categories = GetAuthorisedValueCategories
();
289 foreach my $category (@
$categories) {
290 my $entry = { category
=> $category };
291 $entry->{selected
} = 1 if $category eq $selected;
294 $template->param(authorised_value_categories
=> \
@list);
298 my $template = shift;
299 my $selected = @_ ?
shift : '';
301 $template->param(classes_val_loop
=> GetAuthorisedValues
( 'PA_CLASS', $selected ) );