1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
| 1. / 2. / ...
## FÜR DEN Bild-Titel
if(empty($cs_main['mod_rewrite'])) {
$data['data']['picture'] = cs_html_link('mods/gallery/image.php?pic=' . $cs_gallery['gallery_id'],$cs_lap,0,0,0,'rel="lightbox" title="'.$cs_gallery['gallery_titel'].'"');
}
else {
$host = 'http://' . $_SERVER['HTTP_HOST'];
$host .= str_replace('index.php','',$_SERVER['PHP_SELF']);
$host .= 'mods/gallery/image.php?pic=' . $cs_gallery['gallery_id'];
$data['data']['picture'] = cs_html_link($host,$cs_lap,0,0,0,'rel="lightbox" title="'.$cs_gallery['gallery_titel'].'"');
}
}
### FÜR DIE BILD-Beschreibung
if(empty($cs_main['mod_rewrite'])) {
$data['data']['picture'] = cs_html_link('mods/gallery/image.php?pic=' . $cs_gallery['gallery_id'],$cs_lap,0,0,0,'rel="lightbox" title="'.$cs_gallery['gallery_description'].'"');
}
else {
$host = 'http://' . $_SERVER['HTTP_HOST'];
$host .= str_replace('index.php','',$_SERVER['PHP_SELF']);
$host .= 'mods/gallery/image.php?pic=' . $cs_gallery['gallery_id'];
$data['data']['picture'] = cs_html_link($host,$cs_lap,0,0,0,'rel="lightbox" title="'.$cs_gallery['gallery_description'].'"');
}
} |