forum.coppermine-gallery.net

No Support => Feature requests => Topic started by: glenc on January 17, 2006, 03:24:51 pm

Title: e-card bbcode
Post by: glenc on January 17, 2006, 03:24:51 pm
there is [url], [email] etc… how about [iqc] [aim] [msn] this holds true for the description field in the upload screen. When navigating the files theses links show up below the files and in the bottom left corner of the ecard.
Title: Re: e-card bbcode
Post by: bozUNtu on November 17, 2006, 11:45:17 pm
OPEN

displayimage.php

FIND

Code: [Select]
    // Create the absolute URL for display in info
    //$info[$lang_picinfo['URL']] = '<a href="' . $CONFIG["ecards_more_pic_target"] . (substr($CONFIG["ecards_more_pic_target"], -1) == '/' ? '' : '/') .basename($_SERVER['PHP_SELF']) . "?pos=-$CURRENT_PIC_DATA[pid]" . '" >' . $CONFIG["ecards_more_pic_target"] . (substr($CONFIG["ecards_more_pic_target"], -1) == '/' ? '' : '/') . basename($_SERVER['PHP_SELF']) . "?pos=-$CURRENT_PIC_DATA[pid]" . '</a>';
    // with subdomains the variable is $_SERVER["SERVER_NAME"] does not return the right value instead of using a new config variable I reused $CONFIG["ecards_more_pic_target"] no trailing slash in the configure

AFTER ADD

Code: [Select]
    $info['E-Card Link']='<input class="textinput" type=text name=text size="70" value="[url='.$CONFIG["ecards_more_pic_target"] . (substr($CONFIG["ecards_more_pic_target"], -1) == '/' ? '' : '/'). "ecard.php" ."?pid=$CURRENT_PIC_DATA[pid]".']E-CARD[/url]">';
for phpBB..