Changeset 3158584
- Timestamp:
- 09/27/2024 08:54:19 AM (18 months ago)
- Location:
- widget-logic
- Files:
-
- 2 added
- 3 edited
- 13 copied
-
tags/6.0.3 (copied) (copied from widget-logic/trunk)
-
tags/6.0.3/WidgetLogicAdminConfig.php (added)
-
tags/6.0.3/block (copied) (copied from widget-logic/trunk/block)
-
tags/6.0.3/block/index.php (copied) (copied from widget-logic/trunk/block/index.php)
-
tags/6.0.3/block_widget (copied) (copied from widget-logic/trunk/block_widget)
-
tags/6.0.3/block_widget/index.php (copied) (copied from widget-logic/trunk/block_widget/index.php)
-
tags/6.0.3/readme.txt (copied) (copied from widget-logic/trunk/readme.txt) (3 diffs)
-
tags/6.0.3/widget (copied) (copied from widget-logic/trunk/widget)
-
tags/6.0.3/widget.php (copied) (copied from widget-logic/trunk/widget.php)
-
tags/6.0.3/widget/admin.php (copied) (copied from widget-logic/trunk/widget/admin.php) (3 diffs)
-
tags/6.0.3/widget/init.php (copied) (copied from widget-logic/trunk/widget/init.php)
-
tags/6.0.3/widget/logic.php (copied) (copied from widget-logic/trunk/widget/logic.php)
-
tags/6.0.3/widget_cfg.php (copied) (copied from widget-logic/trunk/widget_cfg.php)
-
tags/6.0.3/widget_logic.php (copied) (copied from widget-logic/trunk/widget_logic.php) (2 diffs)
-
trunk/WidgetLogicAdminConfig.php (added)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/widget/admin.php (modified) (3 diffs)
-
trunk/widget_logic.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
widget-logic/tags/6.0.3/readme.txt
r3143078 r3158584 4 4 Requires at least: 3.0 5 5 Tested up to: 6.6 6 Stable tag: 6.0 26 Stable tag: 6.0.3 7 7 Requires PHP: 5.4 8 8 License: GPLv2 or later … … 43 43 = Interaction with External Services = 44 44 45 Widget Logic uses the external service to obtain up-to-date information about the results of football matches. widgetlogic.orgis 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.orgservice 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.45 Widget 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 47 The 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. 48 48 49 49 == Frequently Asked Questions == … … 126 126 == Changelog == 127 127 128 = 6.02 = 128 = 6.0.3 = 129 130 * added settings option for enable new functionality 131 132 = 6.0.2 = 129 133 130 134 * fixed bug for php7.2 -
widget-logic/tags/6.0.3/widget/admin.php
r3143078 r3158584 17 17 name="<?php echo esc_attr($widget->get_field_name('widget_logic')); ?>" 18 18 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> 22 20 </p> 23 21 <?php … … 300 298 </label> 301 299 <?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> 305 301 <br> 306 302 <span class="description"> … … 324 320 name="<?php echo esc_attr($input_name) ?>" 325 321 id="<?php echo esc_attr($input_id) ?>" 326 > 327 <?php echo esc_textarea($logic) ?> 328 </textarea> 322 ><?php echo esc_textarea($logic) ?></textarea> 329 323 <?php endif ?> 330 324 <?php wp_nonce_field('widget_logic_save', 'widget_logic_nonce'); ?> -
widget-logic/tags/6.0.3/widget_logic.php
r3143078 r3158584 4 4 /* 5 5 Plugin Name: Widget Logic 6 Description: Control widgets with WP's conditional tags is_home etc 7 Version: 6.0 26 Description: Control widgets with WP's conditional tags is_home etc, for Enable Gutenberg widgets and new built-in widgets visit the settings page. 7 Version: 6.0.3 8 8 Author: Widget Logic 9 9 Author URI: https://widgetlogic.org … … 13 13 */ 14 14 15 if (version_compare(get_bloginfo('version'), '5.0', '>=')) { 16 include_once 'block/index.php'; 15 include_once 'WidgetLogicAdminConfig.php'; 16 $cfg = WidgetLogicAdminConfig::getInstance(); 17 18 // Add a link to the settings page in the plugin description area 19 add_filter('plugin_action_links_'.plugin_basename(__FILE__), array($cfg, 'addDescriptionSettingsLink')); 20 21 if ($cfg->isFullyEnabled()) { 22 if (version_compare(get_bloginfo('version'), '5.0', '>=')) { 23 include_once 'block/index.php'; 24 } 25 26 include_once 'widget.php'; 17 27 } 18 28 19 include_once 'widget.php';20 29 include_once 'widget/init.php'; 21 30 -
widget-logic/trunk/readme.txt
r3143078 r3158584 4 4 Requires at least: 3.0 5 5 Tested up to: 6.6 6 Stable tag: 6.0 26 Stable tag: 6.0.3 7 7 Requires PHP: 5.4 8 8 License: GPLv2 or later … … 43 43 = Interaction with External Services = 44 44 45 Widget Logic uses the external service to obtain up-to-date information about the results of football matches. widgetlogic.orgis 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.orgservice 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.45 Widget 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 47 The 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. 48 48 49 49 == Frequently Asked Questions == … … 126 126 == Changelog == 127 127 128 = 6.02 = 128 = 6.0.3 = 129 130 * added settings option for enable new functionality 131 132 = 6.0.2 = 129 133 130 134 * fixed bug for php7.2 -
widget-logic/trunk/widget/admin.php
r3143078 r3158584 17 17 name="<?php echo esc_attr($widget->get_field_name('widget_logic')); ?>" 18 18 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> 22 20 </p> 23 21 <?php … … 300 298 </label> 301 299 <?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> 305 301 <br> 306 302 <span class="description"> … … 324 320 name="<?php echo esc_attr($input_name) ?>" 325 321 id="<?php echo esc_attr($input_id) ?>" 326 > 327 <?php echo esc_textarea($logic) ?> 328 </textarea> 322 ><?php echo esc_textarea($logic) ?></textarea> 329 323 <?php endif ?> 330 324 <?php wp_nonce_field('widget_logic_save', 'widget_logic_nonce'); ?> -
widget-logic/trunk/widget_logic.php
r3143078 r3158584 4 4 /* 5 5 Plugin Name: Widget Logic 6 Description: Control widgets with WP's conditional tags is_home etc 7 Version: 6.0 26 Description: Control widgets with WP's conditional tags is_home etc, for Enable Gutenberg widgets and new built-in widgets visit the settings page. 7 Version: 6.0.3 8 8 Author: Widget Logic 9 9 Author URI: https://widgetlogic.org … … 13 13 */ 14 14 15 if (version_compare(get_bloginfo('version'), '5.0', '>=')) { 16 include_once 'block/index.php'; 15 include_once 'WidgetLogicAdminConfig.php'; 16 $cfg = WidgetLogicAdminConfig::getInstance(); 17 18 // Add a link to the settings page in the plugin description area 19 add_filter('plugin_action_links_'.plugin_basename(__FILE__), array($cfg, 'addDescriptionSettingsLink')); 20 21 if ($cfg->isFullyEnabled()) { 22 if (version_compare(get_bloginfo('version'), '5.0', '>=')) { 23 include_once 'block/index.php'; 24 } 25 26 include_once 'widget.php'; 17 27 } 18 28 19 include_once 'widget.php';20 29 include_once 'widget/init.php'; 21 30
Note: See TracChangeset
for help on using the changeset viewer.