View | Details | Raw Unified | Return to bug 20443
Collapse All | Expand All

(-)a/Koha/Patron/Attribute.pm (-2 / +2 lines)
Lines 67-73 sub type { Link Here
67
    return scalar Koha::Patron::Attribute::Types->find( $self->code );
67
    return scalar Koha::Patron::Attribute::Types->find( $self->code );
68
}
68
}
69
69
70
=head3
70
=head3 authorised_value
71
71
72
my $authorised_value = $attribute->authorised_value;
72
my $authorised_value = $attribute->authorised_value;
73
73
Lines 92-98 sub authorised_value { Link Here
92
    return $av->next;
92
    return $av->next;
93
}
93
}
94
94
95
=head3
95
=head3 description
96
96
97
my $description = $patron_attribute->description;
97
my $description = $patron_attribute->description;
98
98
(-)a/Koha/Patron/Attributes.pm (-1 / +1 lines)
Lines 87-93 sub filter_by_branch_limitations { Link Here
87
    return $self->search( $or, $join );
87
    return $self->search( $or, $join );
88
}
88
}
89
89
90
=head3
90
=head3 merge_with
91
91
92
$new_attributes is an arrayref of hashrefs
92
$new_attributes is an arrayref of hashrefs
93
93
(-)a/Koha/Patrons.pm (-2 / +1 lines)
Lines 446-452 sub filter_by_attribute_type { Link Here
446
446
447
my $patrons = Koha::Patrons->filter_by_attribute_value($attribute_value);
447
my $patrons = Koha::Patrons->filter_by_attribute_value($attribute_value);
448
448
449
Return a Koha::Patrons set with patrong having the attribute value passed in paramter.
449
Return a Koha::Patrons set with patrong having the attribute value passed in parameter.
450
450
451
=cut
451
=cut
452
452
453
- 

Return to bug 20443