<<

NAME

C4::Stats - Update Koha statistics (log)

SYNOPSIS

  use C4::Stats;

DESCRIPTION

The &UpdateStats function adds an entry to the statistics table in the Koha database, which acts as an activity log.

FUNCTIONS

UpdateStats
  &UpdateStats($branch, $type, $value, $other, $itemnumber,
               $itemtype, $borrowernumber);

Adds a line to the statistics table of the Koha database. In effect, it logs an event.

$branch, $type, $value, $other, $itemnumber, $itemtype, and $borrowernumber correspond to the fields of the statistics table in the Koha database.

AUTHOR

Koha Development Team <http://koha-community.org/>

<<