Demo

Probiere ClanSphere aus und teste daran herum. Demo

Codepaste - Details
Weitere Infos zum Codepaste

Name Gallery: Bildinfos in der Lightbox
Autor de Tom08
CMS-Version ClanSphere 2008
Datei gallery/com_view.php
Datum 14.12.2008 um 17:27 Uhr
Beschreibung Mithilfe dieses Codepastes ist es möglich Titel oder Beschreibung eines Gallery-Bildes in der Lightbox anzuzeigen.
Alter Code Alter Code +-
 
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
1. / 2. / ... 
       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"');
      }
      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"');
      }
    }
Neuer Code Neuer Code +-
 
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'].'"');
      }
    }
Zurück - Übersicht

Kommentare: 1
Seite [1]
UnKn0wn ClanSphere Team

02.05.2023

Ort: -
Beiträge: 1215
# 1 - 16.12.2008 um 00:04 Uhr

Schönes Ding gefällt mir super, könnte man nicht beides integrieren


Bitte Login benutzen, um Kommentare zu schreiben.