Changeset 91322 in spip-zone
- Timestamp:
- Aug 10, 2015, 5:59:41 PM (6 years ago)
- Location:
- _plugins_/qrcode/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
_plugins_/qrcode/trunk/paquet.xml
r89996 r91322 2 2 prefix="qrcode" 3 3 categorie="communication" 4 version="1.0. 3"4 version="1.0.4" 5 5 etat="dev" 6 6 compatibilite="[3.0.15;3.1.*]" -
_plugins_/qrcode/trunk/qrcode_fonctions.php
r89879 r91322 48 48 if ($style = lire_config('qrcode/style')) { $style = ' style="'.$style.'"' ; } 49 49 $filename = qrcode_getpng($texte, $taille, $ecc) ; 50 return "<img$class$style src=\"$filename\" alt=\"qrcode:$texte\" title=\""._T('qrcode:aide')."\"/>" ; 50 $width = ' width="'.largeur($filename).'"'; 51 $height = ' height="'.hauteur($filename).'"'; 52 return "<img$class$style src=\"$filename\"$width$height alt=\"qrcode:$texte\" title=\""._T('qrcode:aide')."\"/>" ; 51 53 } 52 54 ?>
Note: See TracChangeset
for help on using the changeset viewer.