Summary: | [DOCS] Explanation of callnumber.pl plugin | ||
---|---|---|---|
Product: | Koha | Reporter: | Elaine Bradtke <eb> |
Component: | Documentation | Assignee: | David Nind <david> |
Status: | Needs documenting --- | QA Contact: | Testopia <testopia> |
Severity: | enhancement | ||
Priority: | P5 - low | CC: | anke.bruns, david, mik |
Version: | Main | Keywords: | Manual |
Hardware: | All | ||
OS: | All | ||
Change sponsored?: | --- | Patch complexity: | --- |
Documentation contact: | David Nind | Documentation submission: | |
Text to go in the release notes: | Version(s) released in: | ||
Circulation function: |
Description
Elaine Bradtke
2016-06-21 16:59:53 UTC
Still valid. I could also not find references to value builders or plugins in the context of catalouging - there might be a whole lot to document there! There is now a cataloguing (value builder) section in the manual (https://koha-community.org/manual/23.05/en/html/valuebuilder.html). My plan is to add a table/list of the plugins with a short description, then to add the details for each one. I'll start with this one, and go from there. Some already have a good description in the actual script, and many of the UNIMARC ones are helpers used to populate the fields with the required values. Explanation could be added to https://koha-community.org/manual//latest/de/html/valuebuilder.html In the script callnumber.pl there is a fairly good explanation that might be used as a template for the manual text: =head1 DESCRIPTION Is used for callnumber computation. If the user send an empty string, we return a simple incremented callnumber. If a prefix is submited, we look for the highest callnumber with this prefix, and return it incremented. In this case, a callnumber has this form : "PREFIX 0009678570". - PREFIX is an upercase word - a space separator - 10 digits, with leading 0s if needed =cut (In reply to Anke Bruns from comment #3) > Explanation could be added to > https://koha-community.org/manual//latest/de/html/valuebuilder.html > > In the script callnumber.pl there is a fairly good explanation that might be > used as a template for the manual text: > > =head1 DESCRIPTION > > Is used for callnumber computation. > > If the user send an empty string, we return a simple incremented callnumber. > If a prefix is submited, we look for the highest callnumber with this > prefix, and return it incremented. > In this case, a callnumber has this form : "PREFIX 0009678570". > - PREFIX is an upercase word > - a space separator > - 10 digits, with leading 0s if needed > > =cut (and I overlooked that David already pointed out the manual page, sorry!) |