]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - locale/de/pgsrc/Hilfe%2FPhotoAlbumPlugin
rename to Hilfe: page, fix and add links
[SourceForge/phpwiki.git] / locale / de / pgsrc / Hilfe%2FPhotoAlbumPlugin
1 Date: Tue, 20 Sep 2005 20:18:39 +0100
2 Mime-Version: 1.0 (Produced by PhpWiki 1.3.12pre-20050918)
3 Content-Type: application/x-phpwiki;
4   pagename=Hilfe%2FPhotoAlbumPlugin;
5   flags="";
6   markup=2;
7   charset=iso-8859-1
8 Content-Transfer-Encoding: binary
9
10 !!! Zusammenfassung
11 Zeigt eine Liste von Bilder aus einer Definitionsdatei mit optionaler Beschreibung als Album an. 
12
13 !!! Benutzung 
14 <verbatim>
15 <?plugin PhotoAlbum
16          src=http://server/textfile
17          mode=[column|row]
18          align=[center|left|right]
19          desc=true
20          sort=false
21          height=100%
22          width=100%
23          weblocation=>false
24 ?>
25 </verbatim>
26
27 !!! Argumente
28 _Nur der ='src'= Parameter ist verpflichtend._
29
30 *src*:
31   Url or local path to a CSV textfile which separates filename and 
32   description of each photo. Photos listed in the text file have to be in same
33   directory as the file. Descriptions are optional.
34   If the the local path points to a directory, is relative from PHPWIKI_DIR, 
35   and the main script is in PHPWIKI_DIR, weblocation must not be given, and 
36   all pictures from this directory are displayed.
37
38 *url*: 
39   defines the the webpath to the srcdir directory (formerly called weblocation)
40
41 *mode*:
42   Specifies how the images are arranged.
43
44   * "normal" - Normal table which shows photos full-size
45   * "thumbs" - WinXP thumbnail style
46   * "tiles"  - WinXP tiles style
47   * "list"   - WinXP list style
48   * "slide"  - slideshow mode, needs javascript on client
49
50 *showdesc*:
51   "none"   - No descriptions next to photos %%%
52   "name"   - Only filename shown %%%
53   "desc"   - Only description (from textfile) shown %%%
54   "both"   - If no description found, then filename will be used %%%
55
56 *link*: 
57   true or false
58   If true, each image will be hyperlinked to a page where the single 
59   photo will be shown full-size. Only works when mode != 'normal'
60
61 *align*:
62   center|right|left. Default is ='center'=.
63
64 *desc*:
65   Display any descriptions given in the text file. Default is true.
66
67 *sort*:
68   Sort images by file name. By default the order in the text file is
69   followed.
70
71 *bgcolor*:
72   Default: #eae8e8  cell bgcolor (lightgrey)
73
74 *hlcolor*:
75   Default: #c0c0ff  highlight color (lightblue)
76
77 *height*, *width*:
78   Height and width are calculated compared to original metrics
79   retrieved by [php-function:getimagesize] and can be absolute (50px) 
80   or a percentage (e.g. "50%").
81
82 *attrib*:
83   attrib arg allows multiple attributes: attrib=sort,nowrap,alt
84   'sort' sorts alphabetically, 'nowrap' for cells, 'alt' to use
85   descs instead of filenames in image ALT-tags
86
87 *cellwidth*:
88   cell (auto|equal|image|75|100%)
89
90   Width of cells in table. Either absolute value in pixels, HTML
91   style percentage, "auto" (no special action), "equal" (where
92   all columns are equally sized) or "image" (take height and
93   width of the photo in that cell).
94
95 *tablewidth*: (Optional)
96   table (75|100%)
97
98 *p*:    (Optional)
99   "displaythissinglephoto.jpg" only
100
101 *h*: (Optional)
102   "highlightcolorofthisphoto.jpg" only
103
104 !!! Beispiele
105 !! Textdatei
106 Möglicher Inhalt einer Definitionsdatei:
107
108 <verbatim>
109 photo-01.jpg; Meine Freundin und Ich
110 photo-02.jpg
111 christmas.gif; Frohe Weihnachten!
112 </verbatim>
113
114 !! Beispiel Alben
115 Lokales Verzeichnis:
116 <?plugin PhotoAlbum
117          src="themes/Hawaiian/images/pictures/"
118 ?>
119 oder via externe URL:
120 <verbatim>
121 <?plugin PhotoAlbum
122          src="http://phpwiki.sourceforge.net/demo/themes/Hawaiian/images/pictures/PhotoAlbum.csv"
123 </verbatim>
124 ?>
125
126 [ /Diashow ]
127
128 !!! Plugin Autoren
129 * [Ted Vinke|mailto:teddy@jouwfeestje.com] Originaler Autor
130 * [ReiniUrban|PhpWiki:ReiniUrban] Lokales Dateisystem
131 * [ThomasHarding|PhpWiki:ThomasHarding] Diashow und thumbs
132
133 ----
134 PhpWikiDokumentation Hilfe:WikiPlugin