[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-cvs] CVS: koha/C4 SearchMarc.pm,1.49,1.50
From: |
Paul POULAIN |
Subject: |
[Koha-cvs] CVS: koha/C4 SearchMarc.pm,1.49,1.50 |
Date: |
Fri, 02 Sep 2005 07:28:40 -0700 |
Update of /cvsroot/koha/koha/C4
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29429/C4
Modified Files:
SearchMarc.pm
Log Message:
new feature : image for itemtypes.
* run updater/updatedatabase to create imageurl field in itemtypes.
* go to Koha >> parameters >> itemtypes >> modify (or add) an itemtype. You
will see around 20 nice images to choose between (thanks to owen). If you
prefer your own image, you also can type a complete url
(http://www.myserver.lib/path/to/my/image.gif)
* go to OPAC, and search something. In the result list, you now have the
picture instead of the text itemtype.
Index: SearchMarc.pm
===================================================================
RCS file: /cvsroot/koha/koha/C4/SearchMarc.pm,v
retrieving revision 1.49
retrieving revision 1.50
diff -C2 -r1.49 -r1.50
*** SearchMarc.pm 12 Aug 2005 13:51:48 -0000 1.49
--- SearchMarc.pm 2 Sep 2005 14:28:38 -0000 1.50
***************
*** 191,194 ****
--- 191,195 ----
# prepare the query to find date_due where applicable
my $sth_issue = $dbh->prepare("select date_due,returndate from issues
where itemnumber=?");
+ my $sth_itemtype = $dbh->prepare("select
itemtypes.description,itemtypes.notforloan,itemtypes.imageurl from itemtypes
where itemtype=?");
# prepare the query to find subtitles
***************
*** 279,283 ****
# /ADDED BY JF
!
$sth_itemCN->execute($biblionumber);
my @CNresults = ();
--- 280,289 ----
# /ADDED BY JF
! # search itemtype information
! $sth_itemtype->execute($line->{itemtype});
! my
($itemtype_description,$itemtype_notforloan,$itemtype_imageurl) =
$sth_itemtype->fetchrow;
! $line->{description} = $itemtype_description;
! $line->{imageurl} = $itemtype_imageurl;
! $line->{notforloan} = $itemtype_notforloan;
$sth_itemCN->execute($biblionumber);
my @CNresults = ();
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Koha-cvs] CVS: koha/C4 SearchMarc.pm,1.49,1.50,
Paul POULAIN <=
- Prev by Date:
[Koha-cvs] CVS: koha/koha-tmpl/opac-tmpl/css/itemtypeimg AF.gif,NONE,1.1 Audiobook.gif,NONE,1.1 AVA.gif,NONE,1.1 AV.gif,NONE,1.1 AVJ.gif,NONE,1.1 AVJNF.gif,NONE,1.1 AVNF.gif,NONE,1.1 Biography.gif,NONE,1.1 Book on CD.gif,NONE,1.1 Book on Tape.gif,NONE,1.1 CDM.gif,NONE,1.1 CD-ROM software.gif,NONE,1.1 DVD.gif,NONE,1.1 EASY.gif,NONE,1.1 Ed. Curriculum.gif,NONE,1.1 EDLS.gif,NONE,1.1 Faculty Course Materials.gif,NONE,1.1 Fiction.gif,NONE,1.1 Fiction, large print.gif,NONE,1.1 FLAG.gif,NONE,1.1 JB.gif,NONE,1.1 JF.gif,NONE,1.1 JNF.gif,NONE,1.1 JREF.gif,NONE,1.1 Juvenile audiobook.gif,NONE,1.1 Juvenile biography.gif,NONE,1.1 Juvenile book-tape kit.gif,NONE,1.1 Juvenile fiction.gif,NONE,1.1 Juvenile non-fiction.gif,NONE,1.1 Juvenile picture books.gif,NONE,1.1 Juvenile reference.gif,NONE,1.1 KIT.gif,NONE,1.1 Local history.gif,NONE,1.1 LP.gif,NONE,1.1 LPNF.gif,NONE,1.1 Magazine.gif,NONE,1.1 MAG.gif,NONE,1.1 MFLM.gif,NONE,1.1 Microfiche.gif,NONE,1.1 Microfilm.gif,NONE,1.1 Music CD.gif,NONE,1.1 Mystery.gif,NONE,1.1 MZ.gif,NONE,1.1 Non-fiction.gif,NONE,1.1 Non-fiction, large print.gif,NONE,1.1 Pamphlet.gif,NONE,1.1 Paperback romance.gif,NONE,1.1 PB.gif,NONE,1.1 PF.gif,NONE,1.1 Rare Book.gif,NONE,1.1 Reference.gif,NONE,1.1 Science fiction & Fantasy.gif,NONE,1.1 SIRS.gif,NONE,1.1 SS.gif,NONE,1.1 Videocassette.gif,NONE,1.1 Videocassette, juvenile.gif,NONE,1.1 Videocassette, juvenile non-fiction.gif,NONE,1.1 Videocassette, non-fiction.gif,NONE,1.1 Video disc.gif,NONE,1.1 Vinyl Sound Recordings.gif,NONE,1.1 WEB.gif,NONE,1.1 Western.gif,NONE,1.1 YAC.gif,NONE,1.1 YA.gif,NONE,1.1 Young Adult fiction.gif,NONE,1.1 Young Adult non fiction.gif,NONE,1.1
- Next by Date:
[Koha-cvs] CVS: koha/C4 Acquisition.pm,1.22,1.23 Koha.pm,1.22,1.23
- Previous by thread:
[Koha-cvs] CVS: koha/koha-tmpl/opac-tmpl/css/itemtypeimg AF.gif,NONE,1.1 Audiobook.gif,NONE,1.1 AVA.gif,NONE,1.1 AV.gif,NONE,1.1 AVJ.gif,NONE,1.1 AVJNF.gif,NONE,1.1 AVNF.gif,NONE,1.1 Biography.gif,NONE,1.1 Book on CD.gif,NONE,1.1 Book on Tape.gif,NONE,1.1 CDM.gif,NONE,1.1 CD-ROM software.gif,NONE,1.1 DVD.gif,NONE,1.1 EASY.gif,NONE,1.1 Ed. Curriculum.gif,NONE,1.1 EDLS.gif,NONE,1.1 Faculty Course Materials.gif,NONE,1.1 Fiction.gif,NONE,1.1 Fiction, large print.gif,NONE,1.1 FLAG.gif,NONE,1.1 JB.gif,NONE,1.1 JF.gif,NONE,1.1 JNF.gif,NONE,1.1 JREF.gif,NONE,1.1 Juvenile audiobook.gif,NONE,1.1 Juvenile biography.gif,NONE,1.1 Juvenile book-tape kit.gif,NONE,1.1 Juvenile fiction.gif,NONE,1.1 Juvenile non-fiction.gif,NONE,1.1 Juvenile picture books.gif,NONE,1.1 Juvenile reference.gif,NONE,1.1 KIT.gif,NONE,1.1 Local history.gif,NONE,1.1 LP.gif,NONE,1.1 LPNF.gif,NONE,1.1 Magazine.gif,NONE,1.1 MAG.gif,NONE,1.1 MFLM.gif,NONE,1.1 Microfiche.gif,NONE,1.1 Microfilm.gif,NONE,1.1 Music CD.gif,NONE,1.1 Mystery.gif,NONE,1.1 MZ.gif,NONE,1.1 Non-fiction.gif,NONE,1.1 Non-fiction, large print.gif,NONE,1.1 Pamphlet.gif,NONE,1.1 Paperback romance.gif,NONE,1.1 PB.gif,NONE,1.1 PF.gif,NONE,1.1 Rare Book.gif,NONE,1.1 Reference.gif,NONE,1.1 Science fiction & Fantasy.gif,NONE,1.1 SIRS.gif,NONE,1.1 SS.gif,NONE,1.1 Videocassette.gif,NONE,1.1 Videocassette, juvenile.gif,NONE,1.1 Videocassette, juvenile non-fiction.gif,NONE,1.1 Videocassette, non-fiction.gif,NONE,1.1 Video disc.gif,NONE,1.1 Vinyl Sound Recordings.gif,NONE,1.1 WEB.gif,NONE,1.1 Western.gif,NONE,1.1 YAC.gif,NONE,1.1 YA.gif,NONE,1.1 Young Adult fiction.gif,NONE,1.1 Young Adult non fiction.gif,NONE,1.1
- Next by thread:
[Koha-cvs] CVS: koha/C4 Acquisition.pm,1.22,1.23 Koha.pm,1.22,1.23
- Index(es):