From 7e7ab28ce9dd4b24b096b1f59c69a44b1b984cdf Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Sat, 17 May 2025 09:30:41 -0300 Subject: [PATCH] Bug 39932: Add POD for Koha::Item->_status() Signed-off-by: Tomas Cohen Arazi Signed-off-by: David Nind --- Koha/Item.pm | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/Koha/Item.pm b/Koha/Item.pm index b3471e0b3b..107feb2e5d 100644 --- a/Koha/Item.pm +++ b/Koha/Item.pm @@ -1435,6 +1435,44 @@ sub columns_to_str { return $values; } +=head3 _status + + my @statuses = $item->_status(); + +Returns a list of statuses for the current item. Possible values are: + +=over 4 + +=item B (mutually exclussive with B) + +=item B (mutually exclussive with B) + +=item B + +=item B + +=item B + +=item B + +=item B + +=item B + +=item B + +=item B + +=item B + +=item B + +=item B + +=back + +=cut + sub _status { my ($self) = @_; -- 2.39.5