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