Bug 18550: [Follow-up] Add POD descriptions to subs
authorMarc Véron <veron@veron.ch>
Thu, 7 Sep 2017 12:48:48 +0000 (14:48 +0200)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Fri, 6 Oct 2017 15:09:55 +0000 (12:09 -0300)
This patch simply adds POD descriptions to subs affected by first patch.

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
C4/Patroncards/Patroncard.pm

index c78a8de..3229559 100644 (file)
@@ -203,6 +203,10 @@ sub draw_guide_grid {
 
 =head2 draw_text
 
+    $patron_card->draw_text($pdf)
+
+Draws text to PDF output ($pdf)
+
 =cut
 
 sub draw_text {
@@ -310,6 +314,10 @@ sub draw_text {
 
 =head2 draw_image
 
+    $patron_card->draw_image($pdf)
+
+Draws images to PDF output ($pdf)
+
 =cut
 
 sub draw_image {
@@ -335,6 +343,10 @@ sub draw_image {
 
 =head2 draw_barcode
 
+    $patron_card->draw_barcode($pdf)
+
+Draws a barcode to PDF output ($pdf)
+
 =cut
 
 sub _draw_barcode {   # this is cut-and-paste from Label.pm because there is no common place for it atm...