Changeset 598933
- Timestamp:
- 09/14/2012 11:02:46 AM (13 years ago)
- Location:
- wpqr-qr-code/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
wpqr_qr-code-generator.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wpqr-qr-code/trunk/readme.txt
r559822 r598933 4 4 Tags: qr-code,qr-codes,generator,qr-code generator,qrcode,qr code,qrtool,widget,widgets,articles,posts,shortcode 5 5 Requires at least: 2.6 6 Tested up to: 3.4. 07 Stable tag: 0.1. 46 Tested up to: 3.4.2 7 Stable tag: 0.1.5 8 8 9 9 QR-Code widget and shortcode in one QR-Code gernerator plugin. Use the QR-Code widget in your sidebars or generate QR-Codes in pages and articles by inserting [qr-code] right where you want your QR-Code to be displayed. … … 25 25 3. Sample output 26 26 27 == Changelog == 28 29 = 0.1.5 = 30 * Performance improvement 31 * Removed html comment 32 33 = 0.1.4 = 34 * Added options for QR-Code color 35 * Clear fix in widget configuration 36 37 == Upgrade Notice == 38 39 = 0.1.5 = 40 This version improves performance due to better caching of generated codes 41 27 42 == Installation == 28 43 -
wpqr-qr-code/trunk/wpqr_qr-code-generator.php
r559831 r598933 5 5 Description: QR-Code widget and shortcode in one QR-Code gernerator plugin. Use the QR-Code widget in your sidebars or generate QR-Codes in pages and articles 6 6 Author: QRtool 7 Version: 0.1. 47 Version: 0.1.5 8 8 Author URI: http://qrtool.de 9 9 License: CC+ … … 171 171 172 172 $qr_code = ''; 173 174 $qr_code .= '<img'.$align_p.$class_p.' src="http://qrtool.de/getQr.php?fg=a,s,'.$color_p.'&fg='.$color_p.'&bg='.$background_color_p.'&size='.$size_p.'&level='.$level_p.'&margin='.$margin_p.'&data='.urlencode($qr_url).'&choe=UTF-8"/>'; 175 $qr_code .= '<!-- QR-Code powered by http://qrtool.de/ -->'; 173 $qr_code .= '<a href="http://qrtool.de/qr-code-generator/" style="cursor:default;border:0;text-decoration:none;">'; 174 $qr_code .= '<img alt="qr code generator"'.$align_p.$class_p.' src="http://qrtool.de/getQr.php?fg=a,s,'.$color_p.'&fg='.$color_p.'&bg='.$background_color_p.'&size='.$size_p.'&level='.$level_p.'&margin='.$margin_p.'&data='.urlencode($qr_url).'&choe=UTF-8"/>'; 175 $qr_code .= '</a>'; 176 //$qr_code .= '<!-- QR-Code powered by http://qrtool.de/ -->'; 176 177 177 178 return $qr_code; … … 381 382 echo '<div'.$class_p.$style_p.'>'; 382 383 $qr_code = ''; 383 $qr_code .= '<img'.$align_p.$class_p.' src="http://qrtool.de/getQr.php?fg=a,s,'.$color_p.'&fg='.$color_p.'&bg='.$background_color_p.'&size='.$size_p.'&level='.$level_p.'&margin='.$margin_p.'&data='.urlencode($qr_url).'&choe=UTF-8"/>'; 384 $qr_code .= '<!-- QR-Code powered by http://qrtool.de/ -->'; 384 $qr_code .= '<a href="http://qrtool.de/qr-code-generator/" style="cursor:default;border:0;text-decoration:none;">'; 385 $qr_code .= '<img alt="qr code generator"'.$align_p.$class_p.' src="http://qrtool.de/getQr.php?fg=a,s,'.$color_p.'&fg='.$color_p.'&bg='.$background_color_p.'&size='.$size_p.'&level='.$level_p.'&margin='.$margin_p.'&data='.urlencode($qr_url).'&choe=UTF-8"/>'; 386 $qr_code .= '</a>'; 387 //$qr_code .= '<!-- QR-Code powered by http://qrtool.de/ -->'; 385 388 386 389 echo $qr_code;
Note: See TracChangeset
for help on using the changeset viewer.