Koha::Patron;;Category - Koha Patron;;Category Object class
my $BlockExpiredPatronOpacActions = $category->effective_BlockExpiredPatronOpacActions
Return the effective BlockExpiredPatronOpacActions value.
my $messaging = $category->default_messaging();
my $limitations = $category->branch_limitations();
$category->branch_limitations( \@branchcodes );
my $limitations = $category->get_branch_limitations();
$category->add_branch_limitation( $branchcode );
$category->del_branch_limitation( $branchcode );
$category->replace_branch_limitations( \@branchcodes );
Returns the internal resultset or creates it if undefined
Returns if patrons in this category can reset their password. If set in $self->reset_password or, if undef, falls back to the OpacResetPassword system preference.
Returns if patrons in this category can change their password. If set in $self->change_password or, if undef, falls back to the OpacPasswordChange system preference.
$category->effective_min_password_length()
Retrieve category's password length if set, or minPasswordLength otherwise
$category->effective_require_strong_password()
Retrieve category's password strength if set, or RequireStrongPassword otherwise
if ( $patron->category->override_hidden_items ) { ... }
Returns a boolean that if patrons of this category are exempt from the OPACHiddenItems policies
TODO: Remove on bug 22547