Page 1 of 1

ImageAlttext 1.1 für RC4

Posted: Thu 21. Apr 2005, 08:54
by fredo
Wo finde ich denn den Hack ImageAlttext 1.1 ?
Irgendwie geht der Link bei Trip nur zum DownloadCounter....

Posted: Thu 21. Apr 2005, 09:58
by spirelli
have you had a look at --...--/ ?

Posted: Thu 21. Apr 2005, 10:17
by fredo
Yes...ad" target="_blank">http://emediafabrik.de/index.php?de_pro ... ext_downlo ad
is not...

Posted: Fri 22. Apr 2005, 10:52
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"]);
}

Posted: Fri 22. Apr 2005, 11:53
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.

Posted: Fri 22. Apr 2005, 13:11
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?

Posted: Fri 22. Apr 2005, 13:16
by fredo
hallo markus,

schade :-(

Ja bin ich unterwegs ab und zu....

Sanfte Grüße
Fred O.