ImageAlttext 1.1 für RC4

If you've problems with unsupported - non official ;-) - functionalities use this forum please.
Post Reply
fredo
Posts: 246
Joined: Thu 12. Feb 2004, 13:12
Location: 20 km nördl. von Berlin

ImageAlttext 1.1 für RC4

Post by fredo »

Wo finde ich denn den Hack ImageAlttext 1.1 ?
Irgendwie geht der Link bei Trip nur zum DownloadCounter....
Wer mich liebt der lacht. Wenn man mich sieht, lachen alle.
spirelli
Posts: 996
Joined: Tue 27. Jul 2004, 13:37
Location: London

Post by spirelli »

have you had a look at --...--/ ?
fredo
Posts: 246
Joined: Thu 12. Feb 2004, 13:12
Location: 20 km nördl. von Berlin

Post by fredo »

Yes...ad" target="_blank">http://emediafabrik.de/index.php?de_pro ... ext_downlo ad
is not...
Wer mich liebt der lacht. Wenn man mich sieht, lachen alle.
User avatar
marcus@localhorst
Posts: 815
Joined: Fri 28. May 2004, 11:31
Location: localhorst
Contact:

Post by marcus@localhorst »

put this in yr frontend_render folder:

Code: Select all

/********************************************
titel:          {IMG} Replacement-Tag
description:    {IMG:path:alt-text:style}
                show an image from the picture dir and down with alt text 
								and styledefinitions
example:        {IMG:image.jpg:this is image with alt text:vertical-align:text-bottom;}

author:         Marcus Obst
last modified:  21-03-2005 created
********************************************/
function alttextimg($pic='',$alt='',$style='') {
$image_with_alt = '';
$pic = preg_replace('/\{IMG:(.*?):(.*?):(.*?)\}/e', '"$1"', $pic);
$alt = preg_replace('/\{IMG:(.*?):(.*?):(.*?)\}/e', '"$2"', $alt);
if ($style != "") $style = preg_replace('/\{IMG:(.*?):(.*?):(.*?)\}/e', '"$3"', $style);
		

$image_with_alt .= "<img src=\"picture/$pic\" alt=\"$alt\" border=\"0\"";
if ($style != "") $image_with_alt .= "style=\"$style\""; 
$image_with_alt .= " />";
    
return $image_with_alt;
}

if( ! ( strpos($content["all"],'{IMG')===false ) ) {
  $content["all"] = preg_replace('/\{IMG:(.*?):(.*?):(.*?)\}/e','alttextimg("$1","$2","$3");',$content["all"]);
}
fredo
Posts: 246
Joined: Thu 12. Feb 2004, 13:12
Location: 20 km nördl. von Berlin

Post by fredo »

Hallo,
vielen dank. Ich hab das Script von Trip schon an anderer Stelle gefunden und eingebaut.

Aber die Bilder, die ich über den dateimanager in die Seite einfüge, denen kann ich keinen Alt-Tag verpassen?

Gruß
Fred O.
Wer mich liebt der lacht. Wenn man mich sieht, lachen alle.
User avatar
marcus@localhorst
Posts: 815
Joined: Fri 28. May 2004, 11:31
Location: localhorst
Contact:

Post by marcus@localhorst »

nee - wüsste ich nicht. die bekommen glaub ich den dateinamen als ALT text?!
grüße
marcus

ps: bist du noch bei spotleid unterwegs?
fredo
Posts: 246
Joined: Thu 12. Feb 2004, 13:12
Location: 20 km nördl. von Berlin

Post by fredo »

hallo markus,

schade :-(

Ja bin ich unterwegs ab und zu....

Sanfte Grüße
Fred O.
Wer mich liebt der lacht. Wenn man mich sieht, lachen alle.
Post Reply