Changeset 226227
- Timestamp:
- 04/07/2010 10:06:26 PM (16 years ago)
- Location:
- googl-generator/trunk
- Files:
-
- 2 edited
-
googl-generator.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
googl-generator/trunk/googl-generator.php
r198266 r226227 4 4 Plugin URI: http://www.dolcebita.com/wordpress/googl-generator/ 5 5 Description: Returns short URL based on Goo.gl using Matthew Flaschen web service. 6 Version: 0. 36 Version: 0.4 7 7 Author: Marcos Esperon 8 8 Author URI: http://www.dolcebita.com/ 9 9 */ 10 10 11 /* Copyright 20 09Marcos Esperon11 /* Copyright 2010 Marcos Esperon 12 12 13 13 This program is free software; you can redistribute it and/or modify … … 51 51 } else if (get_option('gg_version') == 'input') { 52 52 $output .= '<input type="text" value="'.$shorturl.'" readonly />'; 53 } else if (get_option('gg_version') == 'qrcode') { 54 $output .= '<img src="'.$shorturl.'.qr" alt="QRCode" />'; 53 55 } else { 54 56 $output .= $shorturl; … … 173 175 <label for="gg_version_input">Input</label> 174 176 </p> 177 <p> 178 <input type="radio" value="qrcode" <?php if (get_option('gg_version') == 'qrcode') echo 'checked="checked"'; ?> name="gg_version" id="gg_version_qrcode" group="gg_version" /> 179 <label for="gg_version_qrcode">QR Code</label> 180 </p> 175 181 </td> 176 182 </tr> -
googl-generator/trunk/readme.txt
r198286 r226227 4 4 Requires at least: 2.0.0 5 5 Tested up to: 2.8 6 Stable tag: 0. 36 Stable tag: 0.4 7 7 8 Returns short URL based on Goo.gl using Matthew Flaschen web service. 8 Returns short URL based on Goo.gl using Matthew Flaschen web service. It can return the short URL as text, link, input type or a QR Code. 9 9 10 10 == Description == … … 36 36 2. Settings panel 37 37 38 3. QR Code mode 39 38 40 == Changelog == 41 42 = 0.4 = 43 * Support for QR Code mode. 39 44 40 45 = 0.3 =
Note: See TracChangeset
for help on using the changeset viewer.