[SUCHE] BB Code für ganzes Album [SUCHE] BB Code für ganzes Album
 

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Main Menu

[SUCHE] BB Code für ganzes Album

Started by Casper79, November 21, 2010, 10:50:14 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Casper79

Hallo, ich nochmal  ::)

ich suche ein Plugin / Snippet, welches mir die BB Code für ein ganzes Album ausgibt.
Versuche es mal zu erklären:

Man sieht die Übersicht des Albums und darunter dann die BB-Codes, womit man alle Bilder
als Thumbnail in ein Forum übernehmen kann.

Das Plugin, welches BB Codes für ein Bild ausgibt, habe ich schon installiert.

Gibt es so etwas in der Art schon?
Im Plugincenter und in der Suche habe ich nicht wirklich was gefunden.

Viele Grüße

Αndré


Casper79

Schade, dass es das nur für 1.5er Version gibt ...
Gibts da keine Möglichkeit, dass auf die 1.4er anzuwenden?

Αndré

Sollte funktionieren, wenn du in codebase.php
function asc_codes() {
    $superCage = Inspekt::makeSuperCage();
    if ($superCage->get->testInt('album')) {
        global $CONFIG;
        $aid = $superCage->get->getInt('album');
        $result = cpg_db_query("SELECT * FROM {$CONFIG['TABLE_PICTURES']} WHERE aid = '$aid'");
        if (mysql_num_rows($result) > 0) {
            while($row = mysql_fetch_assoc($result)) {
                $url = $CONFIG['ecards_more_pic_target'].'displayimage.php?pid='.$row['pid'];
                $thumb = '[img]'.$CONFIG['ecards_more_pic_target'].get_pic_url($CURRENT_PIC_DATA, 'thumb').'[/img]';
                $content1 .= '[url='.$url.']'.$thumb.'[/url]'."\n";
            }
            echo '<tt>[url][img][/url]</tt>: <br /><textarea onfocus="this.select();" onclick="this.select();" class="textinput" rows="1" cols="64" wrap="off" style="overflow:hidden; height:15px;">'.$content1.'</textarea>';
        }
    }
}

durch
function asc_codes() {
    if (isset($_GET['album'])) {
        global $CONFIG;
        $aid = $_GET['album'];
        $result = cpg_db_query("SELECT * FROM {$CONFIG['TABLE_PICTURES']} WHERE aid = '$aid'");
        if (mysql_num_rows($result) > 0) {
            while($row = mysql_fetch_assoc($result)) {
                $url = $CONFIG['ecards_more_pic_target'].'displayimage.php?pid='.$row['pid'];
                $thumb = '[img]'.$CONFIG['ecards_more_pic_target'].get_pic_url($CURRENT_PIC_DATA, 'thumb').'[/img]';
                $content1 .= '[url='.$url.']'.$thumb.'[/url]'."\n";
            }
            echo '<tt>[url][img][/url]</tt>: <br /><textarea onfocus="this.select();" onclick="this.select();" class="textinput" rows="1" cols="64" wrap="off" style="overflow:hidden; height:15px;">'.$content1.'</textarea>';
        }
    }
}

ersetzt. Ich habe es nicht getestet und möchte da auch nicht viel Arbeit reinstecken, da der Support für cpg1.4.x demnächst ausläuft.

Casper79

Hallo & Danke für den Versuch,

funktioniert leider nicht.
Dann werde ich wohl auf die neue Version updaten müssen ...+

Viele Grüße