Plugin Directory

Changeset 368703


Ignore:
Timestamp:
04/04/2011 03:39:50 PM (15 years ago)
Author:
kosh30
Message:

Localization works

Location:
qr-code-widget/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • qr-code-widget/trunk/qr-code-widget.php

    r368042 r368703  
    2323if ( is_admin() ){
    2424    add_action('admin_init',"qr_admin_loader");
    25     //add_action( 'admin_menu', 'qrcode_admin_action' );
    2625    add_action('admin_menu', 'qrcode_dashboard');
    2726}
     27
    2828function qr_admin_loader(){
    2929    wp_enqueue_style('color-picker', plugin_dir_url( __FILE__ ) . 'colorpicker/css/colorpicker.css');
     
    3232}
    3333
    34 function qr_admin_menu_loader(){
    35     global $wpdb;
    36     include 'qrcode-admin.php';
    37 }
    38 
    39 function qrcode_admin_action(){
    40     add_options_page("QrCode Tools","QrCodes",8,"qrcode_tools_menu","qr_admin_menu_loader");
    41 }
    42 
    4334function qr_code_activate(){
    44     //<p style='padding:0;margin:0;font-size:.8em;'>QRCode created by <a href='http://www.poluschin.info/'>QR Code Widget</a></p>
    4535    $defaults_wg=array( 'title' => "QR Code", 'qr_code_bg' => "ffffff",
    4636    'qr_code_fg' => "000000", 'qr_code_trans_bg' => "0",
    4737    'qr_code_format' => "png",  'qr_code_ecc'=>"1",
    4838    'qr_code_size' => "2", 'pre_code' => "<div>", 'no_cache'=>"0",
    49     'post_code' => "<p style='padding:0;margin:0;font-size:.8em;'>QRCode created by <a href='http://www.poluschin.info/'>QR Code Widget</a></p></div>",'version'=> QR_CODE_SUITE_VERSION);
     39    'post_code' => "<p style='padding:0;margin:0;font-size:.8em;'>QR code created by <a href='http://www.poluschin.info/'>QR code Widget</a></p></div>",'version'=> QR_CODE_SUITE_VERSION);
    5040   
    5141    $defaults_sc=array('qr_code_bg' => "ffffff", 'qr_code_fg' => "000000", 'qr_code_trans_bg' => "0", 'qr_code_format' => "png", 'qr_code_ecc'=>"1", 'qr_code_size' => "2",'no_cache'=>"0", 'version'=> QR_CODE_SUITE_VERSION);
     
    6454                        'qr_code_format' => $format,    'qr_code_ecc'=>"1",
    6555                        'qr_code_size' => $size, 'pre_code' => "<div>", 'no_cache'=>"0",
    66                         'post_code' => "</div><p style='padding:0;margin:0;font-size:.8em;'>QRCode created by <a href='http://www.poluschin.info/'>QR Code Widget</a></p>", 'version'=> QR_CODE_SUITE_VERSION);
     56                        'post_code' => "</div><p style='padding:0;margin:0;font-size:.8em;'>QR code created by <a href='http://www.poluschin.info/'>QR code Widget</a></p>", 'version'=> QR_CODE_SUITE_VERSION);
    6757    }
    6858    delete_option('qr_code_widget');
  • qr-code-widget/trunk/qr_code_suite.php

    r368048 r368703  
    66    function QrCodeWidget() {
    77        /* Widget settings */
    8         $widget_ops = array('classname' => 'qrcode_widget', 'description' => 'A Widget that display QRCode\'s');
     8        $widget_ops = array('classname' => 'qrcode_widget', 'description' => 'A Widget that display QR code\'s');
    99        /* Widget control settings. */
    1010        $control_ops = array('width' => 300, 'height' => 350, 'id_base' => 'qrcode_widget');
    1111
    1212        /* Create the widget. */
    13         $this->WP_Widget('qrcode_widget', 'QRCode Widget', $widget_ops, $control_ops);
     13        $this->WP_Widget('qrcode_widget', 'QR code Widget', $widget_ops, $control_ops);
    1414    }
    1515
     
    6161    function form($instance) {
    6262
    63         // outputs the options form on admin
    64         //$defaults=array('title' => "QR Code", 'qr_code_bg' => "ffffff", 'qr_code_fg' => "000000", 'qr_code_trans_bg' => "0", 'qr_code_format' => "png",   'qr_code_ecc'=>"1", 'qr_code_size' => "2", 'pre_code' => "", 'post_code' => "");
    6563        $defaults = get_option('qr_code_wg');
    6664        $instance = wp_parse_args((array) $instance, $defaults);
     
    8987    </p>
    9088    <p>
    91         <label for="<?php echo $this->get_field_id('qr_code_format'); ?>"><?php _e("File format");?>:</label>
     89        <label for="<?php echo $this->get_field_id('qr_code_format'); ?>"><?php _e("QR code format");?>:</label>
    9290        <input type="radio" <?php echo ( $instance['qr_code_format'] == 'png' ? 'checked' : '') ?> name="<?php echo $this->get_field_name('qr_code_format'); ?>" value="png"> <?php _e("PNG");?>
    9391        <input type="radio" <?php echo ( $instance['qr_code_format'] == 'jpg' ? 'checked' : '') ?> name="<?php echo $this->get_field_name('qr_code_format'); ?>" value="jpg"> <?php _e("Jpeg");?>
    9492    </p>
    9593    <p>
    96         <label for="<?php echo $this->get_field_id('qr_code_trans_bg'); ?>"><?php _e("Transparent bg (PNG only)");?>:</label>
     94        <label for="<?php echo $this->get_field_id('qr_code_trans_bg'); ?>"><?php _e("Transparent background"); ." ". _e("(png only)")?>:</label>
    9795        <input type="radio" <?php echo ($instance['qr_code_trans_bg'] == '0' ? 'checked' : '') ?> name="<?php echo $this->get_field_name('qr_code_trans_bg'); ?>" value="0"> <?php _e("No");?>
    9896        <input type="radio" <?php echo ($instance['qr_code_trans_bg'] == '1' ? 'checked' : '') ?> name="<?php echo $this->get_field_name('qr_code_trans_bg'); ?>" value="1"> <?php _e("Yes");?>
    9997    </p>
    10098    <p>
    101         <label for="<?php echo $this->get_field_id('qr_code_bg'); ?>"><?php _e("Bg color");?>:</label> #
     99        <label for="<?php echo $this->get_field_id('qr_code_bg'); ?>"><?php _e("Background Color");?>:</label> #
    102100        <input id="<?php echo $this->get_field_id('qr_code_bg'); ?>" name="<?php echo $this->get_field_name('qr_code_bg'); ?>" value="<?php echo $instance['qr_code_bg']; ?>" class="<?php echo $this->get_field_id('qr_code_bg'); ?>" size="7" maxlength="7" />
    103101    </p>
    104102    <p>
    105         <label for="<?php echo $this->get_field_id('qr_code_fg'); ?>"><?php _e("Fg color:");?></label> #
     103        <label for="<?php echo $this->get_field_id('qr_code_fg'); ?>"><?php _e("Code Color:");?></label> #
    106104        <input id="<?php echo $this->get_field_id('qr_code_fg'); ?>" name="<?php echo $this->get_field_name('qr_code_fg'); ?>" value="<?php echo $instance['qr_code_fg']; ?>" class="<?php echo $this->get_field_id('qr_code_fg'); ?>" size="7" maxlength="7" />
    107105    </p>
     
    116114    </p>
    117115    <p>
    118         <label for="<?php echo $this->get_field_id('qr_code_size'); ?>"><?php _e("QR Code size");?>:</label>
     116        <label for="<?php echo $this->get_field_id('qr_code_size'); ?>"><?php _e("QR code size");?>:</label>
    119117        <select id="<?php echo $this->get_field_id('qr_code_size'); ?>" name="<?php echo $this->get_field_name('qr_code_size'); ?>" class="widefat">
    120118            <option value="2" <?php echo ($instance['qr_code_size'] == 2 ? 'selected="selected"' : ''); ?>><?php _e("Small");?></option>
     
    133131    </p>
    134132    <p>
    135         <label for="<?php echo $this->get_field_id('qr_code_data'); ?>"><?php _e("Alternative text for this QR Code");?>:</label>
     133        <label for="<?php echo $this->get_field_id('qr_code_data'); ?>"><?php _e("Alternative text for this QR code");?>:</label>
    136134        <textarea class="widefat" rows="6" cols="20" id="<?php echo $this->get_field_id('qr_code_data'); ?>" name="<?php echo $this->get_field_name('qr_code_data'); ?>"><?php echo stripslashes($instance['qr_code_data']); ?></textarea>
    137135    </p>
  • qr-code-widget/trunk/qrcode-admin.php

    r368048 r368703  
    11<?php
    22function qrcode_dashboard() {
    3     add_object_page('QRCode', 'QRCode', 'manage_options', 'qrcode', 'qrcode_manage');
    4     add_submenu_page('qrcode', 'QRCode > Shortcode settings', 'Shortcode Defaults', 'manage_options', 'qrcode_sc_menu', 'qrcode_sc_manage');
    5     add_submenu_page('qrcode', 'QRCode > Widget settings', 'Widget Defaults', 'manage_options', 'qrcode_wg_menu', 'qrcode_wg_manage');
     3    add_object_page('QRcode', 'QRcode', 'manage_options', 'qrcode', 'qrcode_manage');
     4    add_submenu_page('qrcode', 'QRcode > Shortcode settings', 'Shortcode Defaults', 'manage_options', 'qrcode_sc_menu', 'qrcode_sc_manage');
     5    add_submenu_page('qrcode', 'QRcode > Widget settings', 'Widget Defaults', 'manage_options', 'qrcode_wg_menu', 'qrcode_wg_manage');
    66}
    77
     
    99    global $wpdb;
    1010    echo "<div class='wrap'>"; ?>
    11     <h2><?php _e("QRCode Status report");?></h2>
     11    <h2><?php _e("QR code rtatus report");?></h2>
    1212    <?php
    1313    if ( is_writeable(QR_IMAGE_CACHE)){
    1414        ?>
    15         <p><?php _e("Chache directory is writeable");?></p>
     15        <p><?php _e("Cache directory is writable");?></p>
    1616        <?php
    1717        if (glob(QR_IMAGE_CACHE."*.*") != false ){
     
    2222        <?php
    2323    }else
    24         _e("<p>Cache is disabled. All images are created on the fly and embedet in to html code!<br /> If you want to use cache, create ".QR_IMAGE_CACHE." directory and|or make it writeable by webserver</p>");
     24        _e("<p>The intermediate storage of images is disabled. Images are re-created every time and embedded in the HTML code. (CPU-heavy!)<br /> In order to save the CPU resources create the cache folder ( ".QR_IMAGE_CACHE." ) and make sure that the webserver can write to it.</p>");
    2525
    2626    echo '<form name="clear_cache" id="post" method="post" action="admin.php?page=qrcode">';
     
    3737    $option=get_option('qr_code_sc');
    3838    echo "<div class='wrap'>";
    39     _e("<h2>QRCode default settings for shortcodes</h2>");?>
     39    _e("<h2>QR code default settings for shortcodes</h2>");?>
    4040    <script type="text/javascript" language="javascript">
    4141        jQuery.noConflict();
     
    5959        <table class="form-table">
    6060            <tr>
    61                 <td colspan="2"><h3><?php _e("QR Code Settings");?></h3>
     61                <td colspan="2"><h3><?php _e("QR code settings");?></h3>
    6262                    <span class="description">
    63                         <?php _e('This are default settings for shortcodes. You can modify any of them for any shotcode QR Code.<br /> Shortcode variables: [qr_code_display qr_code_format="png|jpg" qr_code_size="1-10" qr_code_ecc="0-3" qr_code_trans_bg="0|1" qr_code_bg="ffffff" qr_code_fg="000000" qr_text="string" no_cache="0|1"]<br /> Empty or missing qr_text will be replaced by site url.');?>
     63                        <?php _e('You can define default values for your parameters using the "Shortcode Defaults" on the QR code page. Then if you miss a parameter the defaults will be used instead. For example [qr_code_display qr_code_fg=FF0000] will expand to "[qr_code_display qr_code_format=png qr_code_size=2 qr_code_ecc=1 qr_code_trans_bg=0 qr_code_bg=ffffff qr_code_fg=FF0000 qr_text=http://yoursite no_cache=0 ]".<br /> All Shortcode variables and parameters: [qr_code_display qr_code_format="png|jpg" qr_code_size="1-10" qr_code_ecc="0-3" qr_code_trans_bg="0|1" qr_code_bg="ffffff" qr_code_fg="000000" qr_text="string" no_cache="0|1"]<br /> Empty or missing qr_text will be replaced by site url.');?>
    6464                    </span>
    6565                </td>
    6666            </tr>
    6767            <tr>
    68                 <th><label for="qr_code_format"><?php _e("QR Code format");?>:</label></th>
     68                <th><label for="qr_code_format"><?php _e("QR code format");?>:</label></th>
    6969                <td>
    7070                    <input type="radio" <?php echo ( $option["qr_code_format"] == 'png' ? 'checked' : '') ?> name="qr_code_format" value="png"> <?php _e("PNG");?>
     
    7474            </tr>
    7575            <tr>
    76                 <th><label for="qr_code_size"><?php _e("QR Code size");?>:</label></th>
     76                <th><label for="qr_code_size"><?php _e("QR code size");?>:</label></th>
    7777                <td>
    7878                    <select id="qr_code_size" name="<?php echo qr_code_size; ?>">
     
    8282                        <option value="8" <?php echo ($option["qr_code_size"] == 8 ? 'selected="selected"':''); ?>><?php _e("XXL");?></option>
    8383                    </select>
    84                     <span class="description">* <?php _e("Size of QR Code");?></span>
     84                    <span class="description">* <?php _e("Size of QR code image");?></span>
    8585                </td>
    8686            </tr>
     
    9595                    </select>
    9696                    <span class="description">
    97                         <?php _e("<br />There are 4 ECC Levels in QR Code as follows:<br />Level L - 7% of codewords can be restored <br />Level M - 15% of codewords can be restored <br />Level Q - 25% of codewords can be restored <br />Level H - 30% of codewords can be restored <br />");?>
     97                        <?php _e("<br />There are 4 ECC Levels in QR code as follows:<br />Level L - 7% of codewords can be restored <br />Level M - 15% of codewords can be restored <br />Level Q - 25% of codewords can be restored <br />Level H - 30% of codewords can be restored <br />");?>
    9898                    </span>
    9999                </td>
    100100           </tr>
    101101            <tr>
    102                 <th><label for="qr_code_format"><?php _e("Disable Cache");?>:</label></th>
     102                <th><label for="no_cache"><?php _e("Disable Cache");?>:</label></th>
    103103                <td>
    104104                    <input type="radio" <?php echo ($option["no_cache"] == '0' ? 'checked' : '') ?> name="no_cache" value="0"> <?php _e("No");?>
    105105                    <input type="radio" <?php echo ($option["no_cache"] == '1' ? 'checked' : '') ?> name="no_cache" value="1"> <?php _e("Yes");?>
    106                     <span class="description">* <?php _e("Don't cache image. QR Code will be created on the fly and embedet in to HTML");?></span>
    107                 </td>
    108             </tr>
    109             <tr>
    110                 <td colspan="2"><h3><?php _e("Color Settings");?></h3></td>
     106                    <span class="description">* <?php _e("Don't cache image. Images are re-created every time and embedded in the HTML code");?></span>
     107                </td>
     108            </tr>
     109            <tr>
     110                <td colspan="2"><h3><?php _e("Color settings");?></h3></td>
    111111            </tr>
    112112            <tr>
     
    114114                <td>
    115115                    #<input id="qr_fg" name="qr_code_fg" maxlength="7" size="7" value="<? echo $option["qr_code_fg"]?>" />
    116                     <span class="description">* <?php _e("Set Color for QR Code");?></span>
     116                    <span class="description">* <?php _e("Set Color for QR code");?></span>
    117117                </td>
    118118            </tr>
     
    121121                <td>
    122122                    #<input id="qr_bg" name="qr_code_bg" maxlength="7" size="7" value="<? echo $option["qr_code_bg"]?>" />
    123                     <span class="description">* <?php _e("Set Background Color for QR Code");?></span>
    124                 </td>
    125             </tr>
    126             <tr>
    127                 <th><label for="qr_fg">Background transparency:</label></th>
     123                    <span class="description">* <?php _e("Set background Color for QR code");?></span>
     124                </td>
     125            </tr>
     126            <tr>
     127                <th><label for="qr_code_trans_bg"><?php _e("Transparent background");?>:</label></th>
    128128                <td valign="middle">
    129129                    <input type="radio" <?php echo ($option["qr_code_trans_bg"] == '0' ? 'checked' : '') ?> name="qr_code_trans_bg" value="0"> <?php _e("No");?>
    130130                    <input type="radio" <?php echo ($option["qr_code_trans_bg"] == '1' ? 'checked' : '') ?> name="qr_code_trans_bg" value="1"> <?php _e("Yes");?>
    131                     <span class="description">* <?php _e("Set Transparency for QR Code backgroung. <b>PNG Only</b>");?></span>
     131                    <span class="description">* <?php _e("Set transparency for QR code background. <b>PNG Only</b>");?></span>
    132132                </td>
    133133            </tr>
     
    187187    $option=get_option('qr_code_wg');
    188188    echo "<div class='wrap'>";
    189     _e("<h2>QRCode default settings for shortcodes</h2>");?>
    190     <span class="description"><?php _e("This are default settings for <b>new</b> Widgets.<br /><b>Changes have no effect for existing Widgets.</b>");?></span>
     189    _e("<h2>QR code default settings for Widgets</h2>");?>
     190    <span class="description"><?php _e("Default settings for <b>new</b> Widgets.<br /><b>Changes have no effect to existing Widgets.</b>");?></span>
    191191    <script type="text/javascript" language="javascript">
    192192        jQuery.noConflict();
     
    210210        <table class="form-table">
    211211            <tr>
    212                 <td colspan="2"><h3><?php _e("QR Code Widget Settings");?></h3></td>
     212                <td colspan="2"><h3><?php _e("QR code Widget settings");?></h3></td>
    213213            </tr>
    214214            <tr>
     
    234234            </tr>
    235235            <tr>
    236                 <td colspan="2"><h3><?php _e("QR Code Settings");?></h3></td>
    237             </tr>
    238             <tr>
    239                 <th><label for="qr_code_format"><?php _e("QR Code format");?>:</label></th>
     236                <td colspan="2"><h3><?php _e("QR code settings");?></h3></td>
     237            </tr>
     238            <tr>
     239                <th><label for="qr_code_format"><?php _e("QR code format");?>:</label></th>
    240240                <td>
    241241                    <input type="radio" <?php echo ( $option["qr_code_format"] == 'png' ? 'checked' : '') ?> name="qr_code_format" value="png"> <?php _e("PNG");?>
     
    245245            </tr>
    246246            <tr>
    247                 <th><label for="qr_code_size"><?php _e("QR Code size");?>:</label></th>
     247                <th><label for="qr_code_size"><?php _e("QR code size");?>:</label></th>
    248248                <td>
    249249                    <select id="qr_code_size" name="<?php echo qr_code_size; ?>">
     
    253253                        <option value="8" <?php echo ($option["qr_code_size"] == 8 ? 'selected="selected"':''); ?>><?php _e("XXL");?></option>
    254254                    </select>
    255                     <span class="description">* <?php _e("Size of QR Code");?></span>
     255                    <span class="description">* <?php _e("Size of QR code");?></span>
    256256                </td>
    257257            </tr>
     
    265265                        <option value="3" <?php echo ($option["qr_code_ecc"] == 3 ? 'selected="selected"':''); ?>> H </option>
    266266                    </select>
    267                     <span class="description"><br /><?php _e("There are 4 ECC Levels in QR Code as follows:<br />Level L - 7% of codewords can be restored <br />Level M - 15% of codewords can be restored <br />Level Q - 25% of codewords can be restored <br />Level H - 30% of codewords can be restored <br />");?></span>
    268                 </td>
    269             </tr>
    270             <tr>
    271                 <th><label for="qr_code_format"><?php _e("Disable Cache");?>:</label></th>
     267                    <span class="description"><br /><?php _e("There are 4 ECC Levels in QR code as follows:<br />Level L - 7% of codewords can be restored <br />Level M - 15% of codewords can be restored <br />Level Q - 25% of codewords can be restored <br />Level H - 30% of codewords can be restored <br />");?></span>
     268                </td>
     269            </tr>
     270            <tr>
     271                <th><label for="no_cache"><?php _e("Disable Cache");?>:</label></th>
    272272                <td>
    273273                    <input type="radio" <?php echo ($option["no_cache"] == '0' ? 'checked' : '') ?> name="no_cache" value="0"> <?php _e("No");?>
    274274                    <input type="radio" <?php echo ($option["no_cache"] == '1' ? 'checked' : '') ?> name="no_cache" value="1"> <?php _e("Yes");?>
    275                     <span class="description">* <?php _e("Don't cache image. QR Code will be created on the fly and embedet in to HTML");?></span>
     275                    <span class="description">* <?php _e("Don't cache image. QR code will be created on the fly and embedet in to HTML");?></span>
    276276                </td>
    277277            </tr>
     
    280280            </tr>
    281281            <tr>
    282                 <th><label for="qr_fg"><?php _e("Code Color");?>:</label></th>
     282                <th><label for="qr_fg"><?php _e("code Color");?>:</label></th>
    283283                <td>
    284284                    #<input id="qr_fg" name="qr_code_fg" maxlength="7" size="7" value="<? echo $option["qr_code_fg"]?>" />
    285                     <span class="description">* <?php _e("Set Color for QR Code");?></span>
     285                    <span class="description">* <?php _e("Set Color for QR code");?></span>
    286286                </td>
    287287            </tr>
     
    290290                <td>
    291291                    #<input id="qr_bg" name="qr_code_bg" maxlength="7" size="7" value="<? echo $option["qr_code_bg"]?>" />
    292                     <span class="description">* <?php _e("Set Background Color for QR Code");?></span>
    293                 </td>
    294 
    295             </tr>
    296             <tr>
    297                 <th><label for="qr_fg"><?php _e("Background transparency");?>:</label></th>
     292                    <span class="description">* <?php _e("Set background Color for QR code");?></span>
     293                </td>
     294
     295            </tr>
     296            <tr>
     297                <th><label for="qr_code_trans_bg"><?php _e("Background transparency");?>:</label></th>
    298298                <td valign="middle">
    299299                    <input type="radio" <?php echo ($option["qr_code_trans_bg"] == '0' ? 'checked' : '') ?> name="qr_code_trans_bg" value="0"> <?php _e("No");?>
    300300                    <input type="radio" <?php echo ($option["qr_code_trans_bg"] == '1' ? 'checked' : '') ?> name="qr_code_trans_bg" value="1"> <?php _e("Yes");?>
    301                     <span class="description">* <?php _e("Set Transparency for QR Code backgroung. <b>PNG Only</b>");?></span>
     301                    <span class="description">* <?php _e("Set transparency for QR code background. <b>PNG Only</b>");?></span>
    302302                </td>
    303303            </tr>
  • qr-code-widget/trunk/readme.txt

    r245462 r368703  
    22Contributors: Wjatscheslaw Poluschin
    33Donate link: http://www.poluschin.info/
    4 Tags: qr code, widget, mobile
    5 Requires at least: 2.6.0
    6 Tested up to: 2.9.2
    7 Stable tag: 1.1.1
     4Tags: qr code, widget, mobile, shotcode
     5Requires at least: 3.0
     6Tested up to: 3.1
     7Stable tag: 2.0.1
    88
    99== Description ==
    10 QR Code generator with widget for your webpage based on Y.Swetake's QrCode script.
     10QR Code generator for your webpages with multiwidget, shortcode support.
     11Based on PHP QR Code encoder http://phpqrcode.sourceforge.net/ .
     12Complete rewrited for the 2.0 version
    1113
    1214
     
    18202. Set write permissions for `/wp-content/plugins/qr-code-widget/cache` directory
    19213. Activate the plugin through the 'Plugins' menu in WordPress
     224. Have fun...
    2023
    2124Read http://en.wikipedia.org/wiki/QR_Code
     
    2427== Showing Your QR Code ==
    2528
    26 = Widget Friendly =
     29= MultiWidget Friendly =
    2730If you are using widgets, you can drag QR Code widget to your sidebar to display your active Article Qr Code.
    2831
     
    3235to display QR Code for Article.
    3336
    34 If u want to change url of Qr Code, you can do so by adding a 'url' and 'title' parameters like this:
    35 `[qr_code_display url="http://www.poluschin.info" title="Link to Poluschin.info"]`
     37If u want to change context of Qr Code, you can do so by adding a qr_text parameter like this:
     38`[qr_code_display qr_text="http://www.poluschin.info"]`
     39
     40Full parameters for shortcode:
     41[qr_code_display qr_code_format=”png|jpg” qr_code_size=”1-10″ qr_code_ecc=”0-3″ qr_code_trans_bg=”0|1″ qr_code_bg=”ffffff” qr_code_fg=”000000″ qr_text=”http://www.poluschin.info″ no_cache=”0|1″]
    3642
    3743= How I can check QR code =
     
    4248* QR Code generator
    4349* Widget support
    44 * Shortcode `[qr_code_display]` insert QR Image to your contenten
     50* Shortcode `[qr_code_display]` insert QR Image to your contenten
     51* Custom colors and transparency for your QrCodes
     52* No filesystem permission required.
     53* Embed images directly in to HTM Source
    4554
    4655
     
    5463http://www.imatrix.lt/
    5564
    56 == Changes in QR Code library ==
     65== Changelog ==
     66= 2.0.0 =
     67* Complete source rewrite
     68* Use phpqrcode library instead of Swetake QR Code Library
     69* Huge increase of functionality like shortcodes, multiwidgets,colorized/tranparency QrCodes
    5770
    58 http://www.swetake.com/qr/qr_cgi_e.html
    59 
    60 remove perl directory
    61 changes in php/qr_img.php file:
    62 
    63 1. set path in setting area
    64 2. rem options from $_GET
    65 3. rem image header
    66 
    67 == Changelog ==
    6871= 1.1.1 =
    6972* Swetake QR Code Library Updated to 0.50i for some Security issues and PHP 5.3 compatibility.
Note: See TracChangeset for help on using the changeset viewer.