Changeset 2935307
- Timestamp:
- 07/06/2023 05:02:06 PM (3 years ago)
- Location:
- searchwp-modal-search-form
- Files:
-
- 6 edited
- 1 copied
-
tags/0.5.3 (copied) (copied from searchwp-modal-search-form/trunk)
-
tags/0.5.3/includes/Plugin.php (modified) (2 diffs)
-
tags/0.5.3/readme.txt (modified) (2 diffs)
-
tags/0.5.3/searchwp-modal-form.php (modified) (2 diffs)
-
trunk/includes/Plugin.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/searchwp-modal-form.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
searchwp-modal-search-form/tags/0.5.3/includes/Plugin.php
r2934767 r2935307 27 27 ->setup(); 28 28 29 $this->register_classes(); 30 29 31 $this->hooks(); 32 } 33 34 /** 35 * Register plugin classes. 36 * 37 * @since 0.5.3 38 */ 39 public function register_classes() { 40 41 searchwp_modal_form() 42 ->incl( 'Utils.php' ); 43 44 searchwp_modal_form() 45 ->incl( 'Settings.php' ) 46 ->register( 'Settings' ); 47 48 searchwp_modal_form() 49 ->incl( 'Notice.php' ) 50 ->register( 'Notice' ); 51 52 searchwp_modal_form() 53 ->incl( 'SettingsApi.php' ) 54 ->register( 'SettingsApi' ); 55 56 searchwp_modal_form() 57 ->incl( 'Notifications.php' ) 58 ->register( 'Notifications' ); 59 60 searchwp_modal_form() 61 ->incl( 'AdminMenu.php' ) 62 ->register( 'AdminMenu' ); 30 63 } 31 64 … … 73 106 74 107 searchwp_modal_form() 75 ->incl( 'Utils.php' ); 108 ->get( 'Settings' ) 109 ->hooks(); 76 110 77 111 searchwp_modal_form() 78 ->incl( 'Settings.php' ) 79 ->register( 'Settings' ) 112 ->get( 'Notice' ) 80 113 ->hooks(); 81 114 82 115 searchwp_modal_form() 83 ->incl( 'Notice.php' ) 84 ->register( 'Notice' ) 85 ->hooks(); 116 ->get( 'SettingsApi' ) 117 ->init(); 118 119 searchwp_modal_form() 120 ->get( 'Notifications' ) 121 ->init(); 86 122 87 123 searchwp_modal_form() 88 ->incl( 'SettingsApi.php' ) 89 ->register( 'SettingsApi' ) 90 ->init(); 91 92 searchwp_modal_form() 93 ->incl( 'Notifications.php' ) 94 ->register( 'Notifications' ) 95 ->init(); 96 97 searchwp_modal_form() 98 ->incl( 'AdminMenu.php' ) 99 ->register( 'AdminMenu' ) 124 ->get( 'AdminMenu' ) 100 125 ->hooks(); 101 126 } -
searchwp-modal-search-form/tags/0.5.3/readme.txt
r2934767 r2935307 5 5 Tested up to: 6.0 6 6 Requires PHP: 7.0 7 Stable tag: 0.5. 27 Stable tag: 0.5.3 8 8 9 9 Quickly and easily insert modal search forms into Menus, as a Block, or directly within theme templates. … … 96 96 == Changelog == 97 97 98 *0.5.3* 99 - Fixes "Call to undefined method" error appearing on some themes. 100 98 101 *0.5.2* 99 102 - Fixes deprecation notices on PHP 8.2. -
searchwp-modal-search-form/tags/0.5.3/searchwp-modal-form.php
r2934767 r2935307 4 4 Plugin URI: https://searchwp.com/extensions/modal-form/ 5 5 Description: Lightweight and accessible search form 6 Version: 0.5. 26 Version: 0.5.3 7 7 Requires PHP: 5.6 8 8 Author: SearchWP, LLC … … 38 38 * @since 0.1 39 39 */ 40 define( 'SEARCHWP_MODAL_FORM_VERSION', '0.5. 2' );40 define( 'SEARCHWP_MODAL_FORM_VERSION', '0.5.3' ); 41 41 } 42 42 -
searchwp-modal-search-form/trunk/includes/Plugin.php
r2934767 r2935307 27 27 ->setup(); 28 28 29 $this->register_classes(); 30 29 31 $this->hooks(); 32 } 33 34 /** 35 * Register plugin classes. 36 * 37 * @since 0.5.3 38 */ 39 public function register_classes() { 40 41 searchwp_modal_form() 42 ->incl( 'Utils.php' ); 43 44 searchwp_modal_form() 45 ->incl( 'Settings.php' ) 46 ->register( 'Settings' ); 47 48 searchwp_modal_form() 49 ->incl( 'Notice.php' ) 50 ->register( 'Notice' ); 51 52 searchwp_modal_form() 53 ->incl( 'SettingsApi.php' ) 54 ->register( 'SettingsApi' ); 55 56 searchwp_modal_form() 57 ->incl( 'Notifications.php' ) 58 ->register( 'Notifications' ); 59 60 searchwp_modal_form() 61 ->incl( 'AdminMenu.php' ) 62 ->register( 'AdminMenu' ); 30 63 } 31 64 … … 73 106 74 107 searchwp_modal_form() 75 ->incl( 'Utils.php' ); 108 ->get( 'Settings' ) 109 ->hooks(); 76 110 77 111 searchwp_modal_form() 78 ->incl( 'Settings.php' ) 79 ->register( 'Settings' ) 112 ->get( 'Notice' ) 80 113 ->hooks(); 81 114 82 115 searchwp_modal_form() 83 ->incl( 'Notice.php' ) 84 ->register( 'Notice' ) 85 ->hooks(); 116 ->get( 'SettingsApi' ) 117 ->init(); 118 119 searchwp_modal_form() 120 ->get( 'Notifications' ) 121 ->init(); 86 122 87 123 searchwp_modal_form() 88 ->incl( 'SettingsApi.php' ) 89 ->register( 'SettingsApi' ) 90 ->init(); 91 92 searchwp_modal_form() 93 ->incl( 'Notifications.php' ) 94 ->register( 'Notifications' ) 95 ->init(); 96 97 searchwp_modal_form() 98 ->incl( 'AdminMenu.php' ) 99 ->register( 'AdminMenu' ) 124 ->get( 'AdminMenu' ) 100 125 ->hooks(); 101 126 } -
searchwp-modal-search-form/trunk/readme.txt
r2934767 r2935307 5 5 Tested up to: 6.0 6 6 Requires PHP: 7.0 7 Stable tag: 0.5. 27 Stable tag: 0.5.3 8 8 9 9 Quickly and easily insert modal search forms into Menus, as a Block, or directly within theme templates. … … 96 96 == Changelog == 97 97 98 *0.5.3* 99 - Fixes "Call to undefined method" error appearing on some themes. 100 98 101 *0.5.2* 99 102 - Fixes deprecation notices on PHP 8.2. -
searchwp-modal-search-form/trunk/searchwp-modal-form.php
r2934767 r2935307 4 4 Plugin URI: https://searchwp.com/extensions/modal-form/ 5 5 Description: Lightweight and accessible search form 6 Version: 0.5. 26 Version: 0.5.3 7 7 Requires PHP: 5.6 8 8 Author: SearchWP, LLC … … 38 38 * @since 0.1 39 39 */ 40 define( 'SEARCHWP_MODAL_FORM_VERSION', '0.5. 2' );40 define( 'SEARCHWP_MODAL_FORM_VERSION', '0.5.3' ); 41 41 } 42 42
Note: See TracChangeset
for help on using the changeset viewer.