Plugin Directory

Changeset 3158584


Ignore:
Timestamp:
09/27/2024 08:54:19 AM (18 months ago)
Author:
widgetlogics
Message:

update to v6.0.3

Location:
widget-logic
Files:
2 added
3 edited
13 copied

Legend:

Unmodified
Added
Removed
  • widget-logic/tags/6.0.3/readme.txt

    r3143078 r3158584  
    44Requires at least: 3.0
    55Tested up to: 6.6
    6 Stable tag: 6.02
     6Stable tag: 6.0.3
    77Requires PHP: 5.4
    88License: GPLv2 or later
     
    4343= Interaction with External Services =
    4444
    45 Widget Logic uses the external service  to obtain up-to-date information about the results of football matches. widgetlogic.org is a source of sports information, that provides a wide range of information about football, including various leagues, tournaments, and championships from around the world.
    46 
    47 The functioning of the widgetlogic.org service is based on delivering real-time data about selected matches without the need to refresh the page. This means that data is automatically updated without requiring page reload. This approach ensures users quick and uninterrupted access to the latest sports data without the effort of manually updating information, allowing them to stay informed about ongoing events in real-time.
     45Widget Logic uses the external service to obtain up-to-date information about the results of football matches. [widgetlogic.org](https://widgetlogic.org) is a source of sports information, that provides a wide range of information about football, including various leagues, tournaments, and championships from around the world.
     46
     47The functioning of the [widgetlogic.org](https://widgetlogic.org) service is based on delivering real-time data about selected matches without the need to refresh the page. This means that data is automatically updated without requiring page reload. This approach ensures users quick and uninterrupted access to the latest sports data without the effort of manually updating information, allowing them to stay informed about ongoing events in real-time.
    4848
    4949== Frequently Asked Questions ==
     
    126126== Changelog ==
    127127
    128 = 6.02 =
     128= 6.0.3 =
     129
     130* added settings option for enable new functionality
     131
     132= 6.0.2 =
    129133
    130134* fixed bug for php7.2
  • widget-logic/tags/6.0.3/widget/admin.php

    r3143078 r3158584  
    1717            name="<?php echo esc_attr($widget->get_field_name('widget_logic')); ?>"
    1818            id="<?php echo esc_attr($widget->get_field_id('widget_logic')); ?>"
    19         >
    20             <?php echo esc_textarea($logic) ?>
    21         </textarea>
     19        ><?php echo esc_textarea($logic) ?></textarea>
    2220    </p>
    2321    <?php
     
    300298        </label>
    301299        <?php if (!empty($wp_customize) && $wp_customize->is_preview()): ?>
    302             <textarea class="widefat" id="<?php echo esc_attr($input_id) ?>" readonly>
    303                 <?php echo esc_textarea($logic) ?>
    304             </textarea>
     300            <textarea class="widefat" id="<?php echo esc_attr($input_id) ?>" readonly><?php echo esc_textarea($logic) ?></textarea>
    305301            <br>
    306302            <span class="description">
     
    324320                name="<?php echo esc_attr($input_name) ?>"
    325321                id="<?php echo esc_attr($input_id) ?>"
    326             >
    327                 <?php echo esc_textarea($logic) ?>
    328             </textarea>
     322            ><?php echo esc_textarea($logic) ?></textarea>
    329323        <?php endif ?>
    330324        <?php wp_nonce_field('widget_logic_save', 'widget_logic_nonce'); ?>
  • widget-logic/tags/6.0.3/widget_logic.php

    r3143078 r3158584  
    44/*
    55Plugin Name: Widget Logic
    6 Description: Control widgets with WP's conditional tags is_home etc
    7 Version:     6.02
     6Description: Control widgets with WP's conditional tags is_home etc, for Enable Gutenberg widgets and new built-in widgets visit the settings page.
     7Version:     6.0.3
    88Author:      Widget Logic
    99Author URI:  https://widgetlogic.org
     
    1313*/
    1414
    15 if (version_compare(get_bloginfo('version'), '5.0', '>=')) {
    16     include_once 'block/index.php';
     15include_once 'WidgetLogicAdminConfig.php';
     16$cfg = WidgetLogicAdminConfig::getInstance();
     17
     18// Add a link to the settings page in the plugin description area
     19add_filter('plugin_action_links_'.plugin_basename(__FILE__), array($cfg, 'addDescriptionSettingsLink'));
     20
     21if ($cfg->isFullyEnabled()) {
     22    if (version_compare(get_bloginfo('version'), '5.0', '>=')) {
     23        include_once 'block/index.php';
     24    }
     25
     26    include_once 'widget.php';
    1727}
    1828
    19 include_once 'widget.php';
    2029include_once 'widget/init.php';
    2130
  • widget-logic/trunk/readme.txt

    r3143078 r3158584  
    44Requires at least: 3.0
    55Tested up to: 6.6
    6 Stable tag: 6.02
     6Stable tag: 6.0.3
    77Requires PHP: 5.4
    88License: GPLv2 or later
     
    4343= Interaction with External Services =
    4444
    45 Widget Logic uses the external service  to obtain up-to-date information about the results of football matches. widgetlogic.org is a source of sports information, that provides a wide range of information about football, including various leagues, tournaments, and championships from around the world.
    46 
    47 The functioning of the widgetlogic.org service is based on delivering real-time data about selected matches without the need to refresh the page. This means that data is automatically updated without requiring page reload. This approach ensures users quick and uninterrupted access to the latest sports data without the effort of manually updating information, allowing them to stay informed about ongoing events in real-time.
     45Widget Logic uses the external service to obtain up-to-date information about the results of football matches. [widgetlogic.org](https://widgetlogic.org) is a source of sports information, that provides a wide range of information about football, including various leagues, tournaments, and championships from around the world.
     46
     47The functioning of the [widgetlogic.org](https://widgetlogic.org) service is based on delivering real-time data about selected matches without the need to refresh the page. This means that data is automatically updated without requiring page reload. This approach ensures users quick and uninterrupted access to the latest sports data without the effort of manually updating information, allowing them to stay informed about ongoing events in real-time.
    4848
    4949== Frequently Asked Questions ==
     
    126126== Changelog ==
    127127
    128 = 6.02 =
     128= 6.0.3 =
     129
     130* added settings option for enable new functionality
     131
     132= 6.0.2 =
    129133
    130134* fixed bug for php7.2
  • widget-logic/trunk/widget/admin.php

    r3143078 r3158584  
    1717            name="<?php echo esc_attr($widget->get_field_name('widget_logic')); ?>"
    1818            id="<?php echo esc_attr($widget->get_field_id('widget_logic')); ?>"
    19         >
    20             <?php echo esc_textarea($logic) ?>
    21         </textarea>
     19        ><?php echo esc_textarea($logic) ?></textarea>
    2220    </p>
    2321    <?php
     
    300298        </label>
    301299        <?php if (!empty($wp_customize) && $wp_customize->is_preview()): ?>
    302             <textarea class="widefat" id="<?php echo esc_attr($input_id) ?>" readonly>
    303                 <?php echo esc_textarea($logic) ?>
    304             </textarea>
     300            <textarea class="widefat" id="<?php echo esc_attr($input_id) ?>" readonly><?php echo esc_textarea($logic) ?></textarea>
    305301            <br>
    306302            <span class="description">
     
    324320                name="<?php echo esc_attr($input_name) ?>"
    325321                id="<?php echo esc_attr($input_id) ?>"
    326             >
    327                 <?php echo esc_textarea($logic) ?>
    328             </textarea>
     322            ><?php echo esc_textarea($logic) ?></textarea>
    329323        <?php endif ?>
    330324        <?php wp_nonce_field('widget_logic_save', 'widget_logic_nonce'); ?>
  • widget-logic/trunk/widget_logic.php

    r3143078 r3158584  
    44/*
    55Plugin Name: Widget Logic
    6 Description: Control widgets with WP's conditional tags is_home etc
    7 Version:     6.02
     6Description: Control widgets with WP's conditional tags is_home etc, for Enable Gutenberg widgets and new built-in widgets visit the settings page.
     7Version:     6.0.3
    88Author:      Widget Logic
    99Author URI:  https://widgetlogic.org
     
    1313*/
    1414
    15 if (version_compare(get_bloginfo('version'), '5.0', '>=')) {
    16     include_once 'block/index.php';
     15include_once 'WidgetLogicAdminConfig.php';
     16$cfg = WidgetLogicAdminConfig::getInstance();
     17
     18// Add a link to the settings page in the plugin description area
     19add_filter('plugin_action_links_'.plugin_basename(__FILE__), array($cfg, 'addDescriptionSettingsLink'));
     20
     21if ($cfg->isFullyEnabled()) {
     22    if (version_compare(get_bloginfo('version'), '5.0', '>=')) {
     23        include_once 'block/index.php';
     24    }
     25
     26    include_once 'widget.php';
    1727}
    1828
    19 include_once 'widget.php';
    2029include_once 'widget/init.php';
    2130
Note: See TracChangeset for help on using the changeset viewer.