Hi
I'm trying to use QR Code on Urls like http://bu.univ-angers.fr/rechercher/description&notice=000543965
and the token [node-url] gives me only http://bu.univ-angers.fr/rechercher/description into my qrcode.
Is there a way to get the entire url passed to the module ?
Any help welcome
Best regards
D

Comments

dbourrion’s picture

Got it working this way

$current_url = 'http://' .$_SERVER['HTTP_HOST'] .$_SERVER['REQUEST_URI'];
# echo $current_url; 
$qr = theme('qr_codes',  $current_url, 180, 180, 0, 0);
 return $qr;

but the outputed QRcode stays in 150*150 even using 180*180 like in the above code
Any idea, somebody ?