Changeset 3143078
- Timestamp:
- 08/28/2024 04:44:46 PM (19 months ago)
- Location:
- widget-logic
- Files:
-
- 9 edited
- 11 copied
-
tags/6.02 (copied) (copied from widget-logic/trunk)
-
tags/6.02/block (copied) (copied from widget-logic/trunk/block)
-
tags/6.02/block/index.php (modified) (1 diff)
-
tags/6.02/block_widget (copied) (copied from widget-logic/trunk/block_widget)
-
tags/6.02/block_widget/index.php (modified) (1 diff)
-
tags/6.02/readme.txt (copied) (copied from widget-logic/trunk/readme.txt) (3 diffs)
-
tags/6.02/widget (copied) (copied from widget-logic/trunk/widget)
-
tags/6.02/widget.php (copied) (copied from widget-logic/trunk/widget.php) (2 diffs)
-
tags/6.02/widget/admin.php (copied) (copied from widget-logic/trunk/widget/admin.php) (1 diff)
-
tags/6.02/widget/init.php (copied) (copied from widget-logic/trunk/widget/init.php)
-
tags/6.02/widget/logic.php (copied) (copied from widget-logic/trunk/widget/logic.php)
-
tags/6.02/widget_cfg.php (copied) (copied from widget-logic/trunk/widget_cfg.php) (1 diff)
-
tags/6.02/widget_logic.php (copied) (copied from widget-logic/trunk/widget_logic.php) (1 diff)
-
trunk/block/index.php (modified) (1 diff)
-
trunk/block_widget/index.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/widget.php (modified) (2 diffs)
-
trunk/widget/admin.php (modified) (1 diff)
-
trunk/widget_cfg.php (modified) (1 diff)
-
trunk/widget_logic.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
widget-logic/tags/6.02/block/index.php
r3131425 r3143078 26 26 esc_url(plugins_url('/css/widget-logic.css', __FILE__)), 27 27 array(), 28 filemtime(plugin_dir_path(__FILE__) . '/css/widget-logic.css') ,28 filemtime(plugin_dir_path(__FILE__) . '/css/widget-logic.css') 29 29 ); 30 30 } -
widget-logic/tags/6.02/block_widget/index.php
r3131425 r3143078 20 20 esc_url(plugins_url('/css/widget.css', __FILE__)), 21 21 array(), 22 filemtime(plugin_dir_path(__FILE__) . '/css/widget.css') ,22 filemtime(plugin_dir_path(__FILE__) . '/css/widget.css') 23 23 ); 24 24 } -
widget-logic/tags/6.02/readme.txt
r3135406 r3143078 4 4 Requires at least: 3.0 5 5 Tested up to: 6.6 6 Stable tag: 6.0 .16 Stable tag: 6.02 7 7 Requires PHP: 5.4 8 8 License: GPLv2 or later … … 19 19 20 20 BIG UPDATE: 21 * Now you can control widget in Gutenberg Widgets editor as well as in Classic Editor. It is jus as easy as before but also in gutenberg view. 21 22 * Now you can control widget in Gutenberg Widgets editor as well as in Classic Editor. It is just as easy as before but also in gutenberg view. 22 23 23 24 * Pre-installed widgets let you add special widget with one click of the mouse. First pre-installed widget is Live Match that let you add widget of one random live football game with real time score updates (teams logos, livescore, minute of the match, tournament name). And more interesting widgets to come! … … 124 125 125 126 == Changelog == 127 128 = 6.02 = 129 130 * fixed bug for php7.2 131 132 = 6.0.1 = 133 134 * Bug fixes 126 135 127 136 = 6.0.0 = -
widget-logic/tags/6.02/widget.php
r3131425 r3143078 23 23 public function widget($args, $instance) { 24 24 $defaults = array( 25 'title' => esc_html__('Live Match', 'widget-logic') ,25 'title' => esc_html__('Live Match', 'widget-logic') 26 26 ); 27 27 $instance = wp_parse_args( (array) $instance, $defaults ); … … 48 48 public function form($instance) { 49 49 $defaults = array( 50 'title' => esc_html__( 'Live Match', 'widget-logic' ) ,50 'title' => esc_html__( 'Live Match', 'widget-logic' ) 51 51 ); 52 52 $instance = wp_parse_args( (array) $instance, $defaults ); -
widget-logic/tags/6.02/widget/admin.php
r3135406 r3143078 176 176 'after_setup_theme' => __('after theme loads', 'widget-logic'), 177 177 'wp_loaded' => __('when all PHP loaded', 'widget-logic'), 178 'wp_head' => __('during page header', 'widget-logic') ,178 'wp_head' => __('during page header', 'widget-logic') 179 179 ); 180 180 foreach ($wl_load_points as $action => $action_desc) { -
widget-logic/tags/6.02/widget_cfg.php
r3131425 r3143078 27 27 return array( 28 28 'ver' => widget_logic_getServiceVersion(), 29 'base' => getenv_docker('WORDPRESS_PLUGIN_WGL_BASE_URL', 'https://widgetlogic.org') ,29 'base' => getenv_docker('WORDPRESS_PLUGIN_WGL_BASE_URL', 'https://widgetlogic.org') 30 30 ); -
widget-logic/tags/6.02/widget_logic.php
r3135406 r3143078 5 5 Plugin Name: Widget Logic 6 6 Description: Control widgets with WP's conditional tags is_home etc 7 Version: 6.0 .17 Version: 6.02 8 8 Author: Widget Logic 9 Author URI: https://widgetlogic.org 9 10 Text Domain: widget-logic 10 11 License: GPLv2 or later -
widget-logic/trunk/block/index.php
r3131425 r3143078 26 26 esc_url(plugins_url('/css/widget-logic.css', __FILE__)), 27 27 array(), 28 filemtime(plugin_dir_path(__FILE__) . '/css/widget-logic.css') ,28 filemtime(plugin_dir_path(__FILE__) . '/css/widget-logic.css') 29 29 ); 30 30 } -
widget-logic/trunk/block_widget/index.php
r3131425 r3143078 20 20 esc_url(plugins_url('/css/widget.css', __FILE__)), 21 21 array(), 22 filemtime(plugin_dir_path(__FILE__) . '/css/widget.css') ,22 filemtime(plugin_dir_path(__FILE__) . '/css/widget.css') 23 23 ); 24 24 } -
widget-logic/trunk/readme.txt
r3135406 r3143078 4 4 Requires at least: 3.0 5 5 Tested up to: 6.6 6 Stable tag: 6.0 .16 Stable tag: 6.02 7 7 Requires PHP: 5.4 8 8 License: GPLv2 or later … … 19 19 20 20 BIG UPDATE: 21 * Now you can control widget in Gutenberg Widgets editor as well as in Classic Editor. It is jus as easy as before but also in gutenberg view. 21 22 * Now you can control widget in Gutenberg Widgets editor as well as in Classic Editor. It is just as easy as before but also in gutenberg view. 22 23 23 24 * Pre-installed widgets let you add special widget with one click of the mouse. First pre-installed widget is Live Match that let you add widget of one random live football game with real time score updates (teams logos, livescore, minute of the match, tournament name). And more interesting widgets to come! … … 124 125 125 126 == Changelog == 127 128 = 6.02 = 129 130 * fixed bug for php7.2 131 132 = 6.0.1 = 133 134 * Bug fixes 126 135 127 136 = 6.0.0 = -
widget-logic/trunk/widget.php
r3131425 r3143078 23 23 public function widget($args, $instance) { 24 24 $defaults = array( 25 'title' => esc_html__('Live Match', 'widget-logic') ,25 'title' => esc_html__('Live Match', 'widget-logic') 26 26 ); 27 27 $instance = wp_parse_args( (array) $instance, $defaults ); … … 48 48 public function form($instance) { 49 49 $defaults = array( 50 'title' => esc_html__( 'Live Match', 'widget-logic' ) ,50 'title' => esc_html__( 'Live Match', 'widget-logic' ) 51 51 ); 52 52 $instance = wp_parse_args( (array) $instance, $defaults ); -
widget-logic/trunk/widget/admin.php
r3135406 r3143078 176 176 'after_setup_theme' => __('after theme loads', 'widget-logic'), 177 177 'wp_loaded' => __('when all PHP loaded', 'widget-logic'), 178 'wp_head' => __('during page header', 'widget-logic') ,178 'wp_head' => __('during page header', 'widget-logic') 179 179 ); 180 180 foreach ($wl_load_points as $action => $action_desc) { -
widget-logic/trunk/widget_cfg.php
r3131425 r3143078 27 27 return array( 28 28 'ver' => widget_logic_getServiceVersion(), 29 'base' => getenv_docker('WORDPRESS_PLUGIN_WGL_BASE_URL', 'https://widgetlogic.org') ,29 'base' => getenv_docker('WORDPRESS_PLUGIN_WGL_BASE_URL', 'https://widgetlogic.org') 30 30 ); -
widget-logic/trunk/widget_logic.php
r3135406 r3143078 5 5 Plugin Name: Widget Logic 6 6 Description: Control widgets with WP's conditional tags is_home etc 7 Version: 6.0 .17 Version: 6.02 8 8 Author: Widget Logic 9 Author URI: https://widgetlogic.org 9 10 Text Domain: widget-logic 10 11 License: GPLv2 or later
Note: See TracChangeset
for help on using the changeset viewer.