Demo

Probiere ClanSphere aus und teste daran herum. Demo

Codepaste - Details
Weitere Infos zum Codepaste

Name Lightbox bei Board-Attachments
Autor de Tom08
CMS-Version Clansphere 2009
Datei board/thread.php
Datum 03.02.2010 um 15:40 Uhr
Beschreibung Auf Nachfrage ein kleines Update meines alten Codepastes.
(http://www.csphere.eu/modules/codepaste/view/id/74)

Funktion: Fügt einen Link für die Lightbox hinzu, wenn es sich beim Attachment/Anhang um ein Bild handelt.
Alter Code Alter Code +-
 
1.
1. / 2. / ... 
 -
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.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
51.
52.
53.
54.
55.
56.
57.
58.
59.
60.
61.
62.
63.
64.
65.
66.
67.
68.
69.
70.
71.
72.
73.
74.
75.
76.
77.
78.
79.
80.
81.
82.
83.
84.
1. / 2. / ... 
 /mods/board/thread.php

-------------
Suche nach
-------------

          if(
file_exists('uploads/board/files/'.$cs_thread_files[$run]['boardfiles_id'].'.'.$ext)) {
            
$file_file filesize('uploads/board/files/'.$cs_thread_files[$run]['boardfiles_id'].'.'.$ext);
            
$data['files'][$run]['file'] = cs_filetype($ext_lower) . ' ' cs_html_link($cs_main['php_self']['dirname'].'mods/board/attachment.php?id='.$cs_thread_files[$run]['boardfiles_id'],$file,1).' ('.cs_filesize($file_file).' - '.$cs_thread_files[$run]['boardfiles_downloaded'].' '.$cs_lang['times'].' )';


-------------------
Füge danach ein
-------------------

    if(
$ext == 'jpg' OR $ext=='JPG' OR $ext == 'jpeg' OR $ext=='JPEG' OR $ext == 'gif' OR $ext=='GIF' OR $ext == 'bmp' OR $ext=='BMP' OR $ext == 'png' OR $ext=='PNG'){
            
$data['files'][$run]['lb'] = cs_html_br(1) . '<a href="uploads/board/files/'.$cs_thread_files[$run]['boardfiles_id'].'.'$ext '"  rel="lightbox" >Lightbox</a>';
            }else{
            
$data['files'][$run]['lb'] = '';
            }


-------------
Suche nach
-------------

  if(
file_exists('uploads/board/files/'.$cs_comments_files[$run2]['boardfiles_id'].'.'.$ext)) {
          
$file_file filesize('uploads/board/files/'.$cs_comments_files[$run2]['boardfiles_id'].'.'.$ext);
          
$data['comment'][$run]['com_files'][$run2]['file'] = cs_filetype($ext_lower) . ' ' cs_html_link($cs_main['php_self']['dirname'].'mods/board/attachment.php?id='.$cs_comments_files[$run2]['boardfiles_id'],$file,1).' ('.cs_filesize($file_file).' - '.$cs_comments_files[$run2]['boardfiles_downloaded'].' '.$cs_lang['times'].' )';


-------------------
Füge danach ein
-------------------

              if(
$ext == 'jpg' OR $ext=='JPG' OR $ext == 'jpeg' OR $ext=='JPEG' OR $ext == 'gif' OR $ext=='GIF' OR $ext == 'bmp' OR $ext=='BMP' OR $ext == 'png' OR $ext=='PNG'){
            
$data['comment'][$run]['com_files'][$run]['lb'] = cs_html_br(1) . '<a href="uploads/board/files/'.$cs_comments_files[$run2]['boardfiles_id'].'.'$ext '"  rel="lightbox" >Lightbox</a>';
            }else{
            
$data['comment'][$run]['com_files'][$run]['lb'] = '';
            }


--------------------------------------
Speichern und wieder hochladen!
--------------------------------------

/
system/runstartup/lightbox.php

-------------
Suche nach
-------------

if(!empty(
$account['access_gallery']) && $cs_main['mod'] == 'gallery') {


----------------
Ersetze durch
----------------

if(!empty(
$account['access_gallery']) && $cs_main['mod'] == 'gallery' OR $cs_main['mod'] == 'board') {

--------------------------------------
Speichern und wieder hochladen!
--------------------------------------

/
themes/base/board/thread.tpl

Folgendes 2x durchführen
!
--------------
Suche nach
--------------
{
files:file}

-------------------
Füge danach ein
-------------------
{
files:lb}


---------------------------------------
Speichern und wieder hochladen!
---------------------------------------

FERTIG!!!
Zurück - Übersicht

Kommentare: 4
Seite [1]
Tweety

16.02.2016

Ort: -
Beiträge: 33
# 1 - 03.02.2010 um 18:51 Uhr

Vielen herzlichsten Dank für das schnelle Update.

Es funzt super !!!
RuGer

29.12.2011

Ort: -
Beiträge: 142
# 2 - 05.02.2010 um 20:43 Uhr

1. "/system/core/runstartup/lightbox.php" - wtf???
"/system/runstartup/lightbox.php" - so wäre doch richtig, oder!?

2. alles richtig gemacht, mehrfach kontrolliert: steht leider nur "{com_files:file}" anstatt "Lightbox"...

Fehler gefunden, Korrektur:

I) /mods/board/thread.php

Falsh:
 
1.
2.
3.
4.
5.
1. / 2. / ... 
 if($ext == 'jpg' OR $ext=='JPG' OR $ext == 'jpeg' OR $ext=='JPEG' OR $ext == 'gif' OR $ext=='GIF' OR $ext == 'bmp' OR $ext=='BMP' OR $ext == 'png' OR $ext=='PNG'){
            
$data['comment'][$run]['com_files'][$run]['lb'] = cs_html_br(1) . '<a href="uploads/board/files/'.$cs_comments_files[$run2]['boardfiles_id'].'.'$ext '"  rel="lightbox" >Lightbox</a>';
            }else{
            
$data['comment'][$run]['com_files'][$run]['lb'] = '';
            }


Richtig:
 
1.
2.
3.
4.
5.
1. / 2. / ... 
 if($ext == 'jpg' OR $ext=='JPG' OR $ext == 'jpeg' OR $ext=='JPEG' OR $ext == 'gif' OR $ext=='GIF' OR $ext == 'bmp' OR $ext=='BMP' OR $ext == 'png' OR $ext=='PNG'){
            
$data['comment'][$run]['com_files'][$run2]['lb'] = cs_html_br(2) . '<a href="uploads/board/files/'.$cs_comments_files[$run2]['boardfiles_id'].'.'$ext '"  rel="lightbox" >Lightbox</a>';
            }else{
            
$data['comment'][$run]['com_files'][$run2]['lb'] = '';
            }


II) /themes/base/board/thread.tpl

Folgendes 2x durchführen!
--------------
Suche nach
--------------
{files:file}

-------------------
Füge danach ein
-------------------
{files:lb}

+

--------------
Suche nach
--------------
{com_files:file}

-------------------
Füge danach ein
-------------------
{com_files:lb}

---------------------------------------
Speichern und wieder hochladen!
---------------------------------------

Jetzt funzt es super !!!


Zuletzt editiert von RuGer, am 05.02.2010 um 21:51 Uhr (1x Editiert)
c0rpi

--

Ort: -
Beiträge: 9
# 3 - 13.01.2011 um 09:18 Uhr

Könnte es jemand fürs Clansphere 2010 updaten?
Wäre sehr dankbar
Blu3ye

25.09.2014

Ort: Albstadt
Beiträge: 171
# 4 - 01.01.2013 um 15:00 Uhr

2011 2011 2011!!


Bitte Login benutzen, um Kommentare zu schreiben.