Plugin Directory

Changeset 3424479


Ignore:
Timestamp:
12/21/2025 06:52:10 AM (3 weeks ago)
Author:
themepoints
Message:
  • Update Options Page.
Location:
scrollbar/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • scrollbar/trunk/readme.txt

    r3355337 r3424479  
    22Contributors: themepoints
    33Donate link: https://themepoints.com
    4 Tags: scrollbar, custom scrollbar, navigation, scroll, nice scrollbar, scrollbars, animation
     4Tags: scrollbar, custom scrollbar, navigation, scroll, nice scrollbar
    55Requires at least: 4.0
    6 Tested up to: 6.8.2
    7 Stable tag: 2.0.5
     6Tested up to: 6.9
     7Stable tag: 2.0.6
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5353
    5454== Changelog ==
     55
     56= 2.0.6 =
     57* Update Options Page.
    5558
    5659= 2.0.5 =
  • scrollbar/trunk/scrollbar-admin.php

    r3355337 r3424479  
    3232            update_option('themepoints_scrollbar_autohide', $themepoints_scrollbar_autohide);
    3333            ?>
    34             <div class="updated"><p><strong><?php _e('Changes Saved.' ); ?></strong></p></div>
     34            <div class="updated"><p><strong><?php esc_html_e('Changes Saved.', 'scrollbar' ); ?></strong></p></div>
    3535            <?php
    3636        }
     
    3939
    4040<style>
    41     .wrap.scrollbar-wp {
    42         max-width: 800px;
    43         padding: 20px;
    44         background-color: #fff;
    45         box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    46     }
    47     .wrap.scrollbar-wp .updated {
    48         background-color: #d4edda;
    49         border-color: #c3e6cb;
    50         color: #155724;
    51         padding: 10px;
    52         margin: 10px 0;
    53         border: 1px solid transparent;
    54         border-radius: 4px;
    55     }
    56     .wrap.scrollbar-wp label {
    57         font-weight: bold;
    58     }
    59     .wrap.scrollbar-wp input[type="text"] {
    60         padding: 5px;
    61         margin-top: 0px;
    62         box-sizing: border-box;
    63     }
     41    .wrap.scrollbar-wp {max-width: 800px;padding: 20px;background-color: #fff;box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);}
     42    .wrap.scrollbar-wp .updated {background-color: #d4edda;border-color: #c3e6cb;color: #155724;padding: 10px;margin: 10px 0;border: 1px solid transparent;border-radius: 4px;}
     43    .wrap.scrollbar-wp label {font-weight: bold;}
     44    .wrap.scrollbar-wp input[type="text"] {padding: 5px;margin-top: 0px;box-sizing: border-box;}
    6445</style>
    6546
    6647<div class="wrap scrollbar-wp">
    67     <h2><?php esc_html_e( 'Scrollbar Option Settings', 'tpscrollbars' ); ?></h2>
    68     <p><?php echo wp_kses_post( 'We would greatly appreciate it if you could take a moment to share your thoughts by giving us a rating in the <a href="https://wordpress.org/support/plugin/scrollbar/reviews/#new-post" target="_blank"><strong>WordPress.org</strong></a>?', 'tpscrollbars' ); ?></p>
     48    <h2><?php esc_html_e( 'Scrollbar Option Settings', 'scrollbar' ); ?></h2>
     49    <p><?php echo wp_kses_post( 'We would greatly appreciate it if you could take a moment to share your thoughts by giving us a rating in the <a href="https://wordpress.org/support/plugin/scrollbar/reviews/#new-post" target="_blank"><strong>WordPress.org</strong></a>?', 'scrollbar' ); ?></p>
    6950    <form method="post" action="">
    7051        <input type="hidden" name="scrollbar_wp_hidden" value="Y">
     
    7657            <tr valign="top">
    7758                <th scope="row">
    78                     <label for="themepoints_scrollbar_colors"><?php esc_html_e( 'Scrollbar Color:', 'tpscrollbars' ); ?></label>
     59                    <label for="themepoints_scrollbar_colors"><?php esc_html_e( 'Scrollbar Color:', 'scrollbar' ); ?></label>
    7960                </th>
    8061                <td style="vertical-align:middle;">
    8162                    <input size='10' name='themepoints_scrollbar_colors' class='scrollbar-color' type='text' id="scrollbar_color" value='<?php echo esc_attr($themepoints_scrollbar_colors); ?>' /><br />
    82                 <span><?php esc_html_e('Select Scrollbar Color.', 'tpscrollbars'); ?></span>
     63                <span><?php esc_html_e('Select Scrollbar Color.', 'scrollbar'); ?></span>
    8364                </td>
    8465            </tr>
     
    8667            <tr valign="top">
    8768                <th scope="row">
    88                     <label for="themepoints_scrollbar_width"><?php esc_html_e( 'Scrollbar Width:', 'tpscrollbars' ); ?></label>
     69                    <label for="themepoints_scrollbar_width"><?php esc_html_e( 'Scrollbar Width:', 'scrollbar' ); ?></label>
    8970                </th>
    9071                <td style="vertical-align:middle;">
    9172                    <input  size='10' name='themepoints_scrollbar_width' class='scrollbar-width' type='number' id="scrollbar_width" value='<?php if ( !empty( $themepoints_scrollbar_width ) ) echo esc_attr($themepoints_scrollbar_width); else echo ''; ?>' />px<br />
    92                 <span><?php esc_html_e('Select scrollbar width. Default Width:5.', 'tpscrollbars'); ?></span>
     73                <span><?php esc_html_e('Select scrollbar width. Default Width:5.', 'scrollbar'); ?></span>
    9374                </td>
    9475            </tr>
     
    9677            <tr valign="top">
    9778                <th scope="row">
    98                     <label for="themepoints_scrollbar_radius"><?php esc_html_e( 'Scrollbar Border Radius:', 'tpscrollbars' ); ?></label>
     79                    <label for="themepoints_scrollbar_radius"><?php esc_html_e( 'Scrollbar Border Radius:', 'scrollbar' ); ?></label>
    9980                </th>
    10081                <td style="vertical-align:middle;">
    10182                    <input  size='10' name='themepoints_scrollbar_radius' class='scrollbar-radius' type='number' id="scrollbar_radius" value='<?php if ( !empty( $themepoints_scrollbar_radius ) ) echo esc_attr($themepoints_scrollbar_radius); else echo ''; ?>' />px<br />
    102                 <span><?php esc_html_e('Select scrollbar border radius. Default border-radius:0.', 'tpscrollbars'); ?></span>
     83                <span><?php esc_html_e('Select scrollbar border radius. Default border-radius:0.', 'scrollbar'); ?></span>
    10384                </td>
    10485            </tr>
     
    10687            <tr valign="top">
    10788                <th scope="row">
    108                     <label for="themepoints_scrollbar_speed"><?php esc_html_e( 'Scrollbar Scroll Speed:', 'tpscrollbars' ); ?></label>
     89                    <label for="themepoints_scrollbar_speed"><?php esc_html_e( 'Scrollbar Scroll Speed:', 'scrollbar' ); ?></label>
    10990                </th>
    11091                <td style="vertical-align:middle;">
    11192                    <input  size='10' name='themepoints_scrollbar_speed' class='scrollbar-speed' type='number' id="scrollbar_speed" value='<?php if ( !empty( $themepoints_scrollbar_speed ) ) echo esc_attr($themepoints_scrollbar_speed); else echo ''; ?>' /><br />
    112                 <span><?php esc_html_e('Select scrollbar scroll speed. Default Speed:60.', 'tpscrollbars'); ?></span>
     93                <span><?php esc_html_e('Select scrollbar scroll speed. Default Speed:60.', 'scrollbar'); ?></span>
    11394                </td>
    11495            </tr>
     
    11697            <tr valign="top">
    11798                <th scope="row">
    118                     <label for="themepoints_scrollbar_border"><?php esc_html_e( 'Scrollbar Border:', 'tpscrollbars' ); ?></label>
     99                    <label for="themepoints_scrollbar_border"><?php esc_html_e( 'Scrollbar Border:', 'scrollbar' ); ?></label>
    119100                </th>
    120101                <td style="vertical-align:middle;">
    121102                    <input size='10' name='themepoints_scrollbar_border' class='scrollbar-border' type='number' id="scrollbar_border" value='<?php if ( !empty( $themepoints_scrollbar_border ) ) echo esc_attr($themepoints_scrollbar_border); else echo ''; ?>' />px<br />
    122                 <span><?php esc_html_e('Select scrollbar border. Default Border:0.', 'tpscrollbars'); ?></span>
     103                <span><?php esc_html_e('Select scrollbar border. Default Border:0.', 'scrollbar'); ?></span>
    123104                </td>
    124105            </tr>
     
    126107            <tr valign="top">
    127108                <th scope="row">
    128                     <label for="themepoints_scrollbar_autohide"><?php esc_html_e( 'Auto Hide Mode:', 'tpscrollbars' ); ?></label>
     109                    <label for="themepoints_scrollbar_autohide"><?php esc_html_e( 'Auto Hide Mode:', 'scrollbar' ); ?></label>
    129110                </th>
    130111                <td style="vertical-align:middle;">
    131112                    <select class="timezone_string" name="themepoints_scrollbar_autohide">
    132                         <option value="true" <?php if($themepoints_scrollbar_autohide=='true') echo "selected"; ?> ><?php esc_html_e( 'Yes', 'tpscrollbars' ); ?></option>
    133                         <option value="false" <?php if($themepoints_scrollbar_autohide=='false') echo "selected"; ?> ><?php esc_html_e( 'No', 'tpscrollbars' ); ?></option>
     113                        <option value="true" <?php if($themepoints_scrollbar_autohide=='true') echo "selected"; ?> ><?php esc_html_e( 'Yes', 'scrollbar' ); ?></option>
     114                        <option value="false" <?php if($themepoints_scrollbar_autohide=='false') echo "selected"; ?> ><?php esc_html_e( 'No', 'scrollbar' ); ?></option>
    134115                    </select><br/>
    135                     <span><?php esc_html_e('Enable/Disable scrollbar Auto Hide Mode.', 'tpscrollbars'); ?></span>
     116                    <span><?php esc_html_e('Enable/Disable scrollbar Auto Hide Mode.', 'scrollbar'); ?></span>
    136117                </td>
    137118            </tr>
     
    139120        </table>
    140121        <p class="submit">
    141             <input class="button button-primary" type="submit" name="Submit" value="<?php _e('Save Changes', 'tpscrollbars' ); ?>" />
     122            <input class="button button-primary" type="submit" name="Submit" value="<?php esc_html_e('Save Changes', 'scrollbar' ); ?>" />
    142123        </p>
    143124    </form>
  • scrollbar/trunk/scrollbar-wp.php

    r3355337 r3424479  
    44        Plugin URI: https://themepoints.com
    55        Description: Scrollbars wp is really simple, With CSS3 it’s kind of magic! You can design your own scrollbar and use it for your website. You can use these scrollbars for every type of Website.
    6         Version: 2.0.5
     6        Version: 2.0.6
    77        Author: themepoints
    88        TextDomain: scrollbar
    99        Author URI: https://themepoints.com
    10         License URI: https://themepoints.com/copyright/
     10        License: GPLv2 or later
    1111    */
    1212
Note: See TracChangeset for help on using the changeset viewer.