@@ -, +, @@ POD is missing for get_hash POD is missing for new_from_statistic POD is missing for 'object_class' --- Koha/PseudonymizedTransaction.pm | 11 ++++++++++- Koha/PseudonymizedTransactions.pm | 4 ++++ 2 files changed, 14 insertions(+), 1 deletion(-) --- a/Koha/PseudonymizedTransaction.pm +++ a/Koha/PseudonymizedTransaction.pm @@ -33,7 +33,9 @@ Koha::PseudonymizedTransaction - Koha Koha::PseudonymizedTransaction Object clas =head2 Class methods -=head3 new +=head3 new_from_statistic + + Creates new object from a passed Koha::Statistic object =cut @@ -98,6 +100,13 @@ sub new_from_statistic { return $self; } +=head3 get_hash + + Generates a hashed value for $s (e.g. borrowernumber) with Bcrypt. + Needs config entry 'key' in koha-conf. + +=cut + sub get_hash { my ( $class, $s ) = @_; my $key = C4::Context->config('key'); --- a/Koha/PseudonymizedTransactions.pm +++ a/Koha/PseudonymizedTransactions.pm @@ -43,6 +43,10 @@ sub _type { return 'PseudonymizedTransaction'; } +=head3 object_class + +=cut + sub object_class { return 'Koha::PseudonymizedTransaction'; } --