Changeset 3414079
- Timestamp:
- 12/08/2025 10:08:26 AM (5 weeks ago)
- Location:
- multisite-language-switcher
- Files:
-
- 16 edited
- 1 copied
-
tags/2.10.1 (copied) (copied from multisite-language-switcher/trunk)
-
tags/2.10.1/MultisiteLanguageSwitcher.php (modified) (2 diffs)
-
tags/2.10.1/assets/css-flags/flags.php (modified) (3 diffs)
-
tags/2.10.1/assets/flags/flags.php (modified) (3 diffs)
-
tags/2.10.1/assets/js/msls-widget-block/block.json (modified) (1 diff)
-
tags/2.10.1/includes/MslsPlugin.php (modified) (2 diffs)
-
tags/2.10.1/includes/deprectated.php (modified) (10 diffs)
-
tags/2.10.1/vendor/composer/autoload_static.php (modified) (2 diffs)
-
tags/2.10.1/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/MultisiteLanguageSwitcher.php (modified) (2 diffs)
-
trunk/assets/css-flags/flags.php (modified) (3 diffs)
-
trunk/assets/flags/flags.php (modified) (3 diffs)
-
trunk/assets/js/msls-widget-block/block.json (modified) (1 diff)
-
trunk/includes/MslsPlugin.php (modified) (2 diffs)
-
trunk/includes/deprectated.php (modified) (10 diffs)
-
trunk/vendor/composer/autoload_static.php (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
multisite-language-switcher/tags/2.10.1/MultisiteLanguageSwitcher.php
r3409411 r3414079 4 4 * 5 5 * Plugin Name: Multisite Language Switcher 6 * Version: 2.10. 06 * Version: 2.10.1 7 7 * Plugin URI: http://msls.co/ 8 8 * Description: A simple but powerful plugin that will help you to manage the relations of your contents in a multilingual multisite-installation. … … 42 42 */ 43 43 if ( ! defined( 'MSLS_PLUGIN_VERSION' ) ) { 44 define( 'MSLS_PLUGIN_VERSION', '2.10. 0' );44 define( 'MSLS_PLUGIN_VERSION', '2.10.1' ); 45 45 define( 'MSLS_PLUGIN_PATH', plugin_basename( __FILE__ ) ); 46 46 define( 'MSLS_PLUGIN__FILE__', __FILE__ ); -
multisite-language-switcher/tags/2.10.1/assets/css-flags/flags.php
r3409411 r3414079 4 4 * File is auto-generated 5 5 * 6 * 131 translations-teams for WordPress found6 * 131 translations-teams for WordPress found 7 7 */ 8 8 // Unhandled language: am (Amharic) … … 33 33 'da_DK' => 'flag-icon-dk', 34 34 'de_AT' => 'flag-icon-at', 35 'de_CH_informal' => 'flag-icon-ch',36 35 'de_DE' => 'flag-icon-de', 37 36 'de_DE_formal' => 'flag-icon-de', 38 37 'de_CH' => 'flag-icon-ch', 38 'de_CH_informal' => 'flag-icon-ch', 39 39 'dzo' => 'flag-icon-bt', 40 40 'el' => 'flag-icon-gr', … … 98 98 'nb_NO' => 'flag-icon-no', 99 99 'ne_NP' => 'flag-icon-np', 100 'nl_BE' => 'flag-icon-be', 100 101 'nl_NL' => 'flag-icon-nl', 101 'nl_BE' => 'flag-icon-be',102 102 'nl_NL_formal' => 'flag-icon-nl', 103 103 'nn_NO' => 'flag-icon-no', -
multisite-language-switcher/tags/2.10.1/assets/flags/flags.php
r3409411 r3414079 4 4 * File is auto-generated 5 5 * 6 * 131 translations-teams for WordPress found6 * 131 translations-teams for WordPress found 7 7 */ 8 8 // Unhandled language: am (Amharic) … … 33 33 'da_DK' => 'dk.png', 34 34 'de_AT' => 'at.png', 35 'de_CH_informal' => 'ch.png',36 35 'de_DE' => 'de.png', 37 36 'de_DE_formal' => 'de.png', 38 37 'de_CH' => 'ch.png', 38 'de_CH_informal' => 'ch.png', 39 39 'dzo' => 'bt.png', 40 40 'el' => 'gr.png', … … 98 98 'nb_NO' => 'no.png', 99 99 'ne_NP' => 'np.png', 100 'nl_BE' => 'be.png', 100 101 'nl_NL' => 'nl.png', 101 'nl_BE' => 'be.png',102 102 'nl_NL_formal' => 'nl.png', 103 103 'nn_NO' => 'no.png', -
multisite-language-switcher/tags/2.10.1/assets/js/msls-widget-block/block.json
r3409411 r3414079 6 6 "category": "widgets", 7 7 "name": "lloc/msls-widget-block", 8 "version": "2.10. 0",8 "version": "2.10.1", 9 9 "description": "Review the settings for the Multisite Language Switcher plugin, as the block utilizes the API function `the_msls()` for its output.", 10 10 "example": {}, -
multisite-language-switcher/tags/2.10.1/includes/MslsPlugin.php
r3409411 r3414079 207 207 * deleted after the uninstall procedure. 208 208 * 209 * @return boolean210 */ 211 public static function uninstall() {209 * @return void 210 */ 211 public static function uninstall(): void { 212 212 /** 213 213 * We want to be sure that the user has not deactivated the … … 226 226 } 227 227 228 returnself::cleanup();228 self::cleanup(); 229 229 } 230 230 -
multisite-language-switcher/tags/2.10.1/includes/deprectated.php
r3409411 r3414079 6 6 * Deprecated: Get the output for using the links to the translations in your code. 7 7 * 8 * @deprecated 2. 9.7 Use msls_get_the_msls()8 * @deprecated 2.10.1 Use msls_get_switcher() 9 9 * 10 10 * @param mixed $attr … … 14 14 // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound 15 15 function get_the_msls( $attr ): string { 16 _deprecated_function( __FUNCTION__, '2. 9.7', 'msls_get_the_msls' );16 _deprecated_function( __FUNCTION__, '2.10.1', 'msls_get_switcher' ); 17 17 18 18 return msls_get_switcher( $attr ); … … 22 22 * Deprecated: Output the links to the translations in your template. 23 23 * 24 * @deprecated 2. 9.7 Use msls_the_msls()24 * @deprecated 2.10.1 Use msls_the_switcher() 25 25 * 26 26 * @param string[] $arr … … 28 28 // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound 29 29 function the_msls( array $arr = array() ): void { 30 _deprecated_function( __FUNCTION__, '2. 9.7', 'msls_the_msls' );30 _deprecated_function( __FUNCTION__, '2.10.1', 'msls_the_switcher' ); 31 31 msls_the_switcher( $arr ); 32 32 } … … 35 35 * Deprecated: Gets the URL of the country flag-icon for a specific locale. 36 36 * 37 * @deprecated 2. 9.7Use msls_get_flag_url()37 * @deprecated 2.10.1 Use msls_get_flag_url() 38 38 * 39 39 * @param string $locale … … 43 43 // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound 44 44 function get_msls_flag_url( string $locale ): string { 45 _deprecated_function( __FUNCTION__, '2. 9.7', 'msls_get_flag_url' );45 _deprecated_function( __FUNCTION__, '2.10.1', 'msls_get_flag_url' ); 46 46 47 47 return msls_get_flag_url( $locale ); … … 51 51 * Deprecated: Gets the description for a blog for a specific locale. 52 52 * 53 * @deprecated 2. 9.7Use msls_get_blog_description()53 * @deprecated 2.10.1 Use msls_get_blog_description() 54 54 * 55 55 * @param string $locale … … 60 60 // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound 61 61 function get_msls_blog_description( string $locale, string $preset = '' ): string { 62 _deprecated_function( __FUNCTION__, '2. 9.7', 'msls_get_blog_description' );62 _deprecated_function( __FUNCTION__, '2.10.1', 'msls_get_blog_description' ); 63 63 64 64 return msls_get_blog_description( $locale, $preset ); … … 68 68 * Deprecated: Gets the permalink for a translation of the current post in a given language. 69 69 * 70 * @deprecated 2. 9.7Use msls_get_permalink()70 * @deprecated 2.10.1 Use msls_get_permalink() 71 71 * 72 72 * @param string $locale … … 77 77 // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound 78 78 function get_msls_permalink( string $locale, string $preset = '' ): string { 79 _deprecated_function( __FUNCTION__, '2. 9.7', 'msls_get_permalink' );79 _deprecated_function( __FUNCTION__, '2.10.1', 'msls_get_permalink' ); 80 80 81 81 return msls_get_permalink( $locale, $preset ); -
multisite-language-switcher/tags/2.10.1/vendor/composer/autoload_static.php
r3287198 r3414079 8 8 { 9 9 public static $prefixLengthsPsr4 = array ( 10 'l' => 10 'l' => 11 11 array ( 12 12 'lloc\\Msls\\' => 10, 13 13 ), 14 'C' => 14 'C' => 15 15 array ( 16 16 'Composer\\Installers\\' => 20, … … 19 19 20 20 public static $prefixDirsPsr4 = array ( 21 'lloc\\Msls\\' => 21 'lloc\\Msls\\' => 22 22 array ( 23 23 0 => __DIR__ . '/../..' . '/includes', 24 24 ), 25 'Composer\\Installers\\' => 25 'Composer\\Installers\\' => 26 26 array ( 27 27 0 => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers', -
multisite-language-switcher/tags/2.10.1/vendor/composer/installed.php
r3409411 r3414079 2 2 'root' => array( 3 3 'name' => 'lloc/multisite-language-switcher', 4 'pretty_version' => '2.10. 0',5 'version' => '2.10. 0.0',6 'reference' => ' 897c7ea2766f60104e532f9183a1eccbbba090ac',4 'pretty_version' => '2.10.1', 5 'version' => '2.10.1.0', 6 'reference' => 'f04b60335851d0d906a5cf8e738da28726c08131', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 21 21 ), 22 22 'lloc/multisite-language-switcher' => array( 23 'pretty_version' => '2.10. 0',24 'version' => '2.10. 0.0',25 'reference' => ' 897c7ea2766f60104e532f9183a1eccbbba090ac',23 'pretty_version' => '2.10.1', 24 'version' => '2.10.1.0', 25 'reference' => 'f04b60335851d0d906a5cf8e738da28726c08131', 26 26 'type' => 'wordpress-plugin', 27 27 'install_path' => __DIR__ . '/../../', -
multisite-language-switcher/trunk/MultisiteLanguageSwitcher.php
r3409411 r3414079 4 4 * 5 5 * Plugin Name: Multisite Language Switcher 6 * Version: 2.10. 06 * Version: 2.10.1 7 7 * Plugin URI: http://msls.co/ 8 8 * Description: A simple but powerful plugin that will help you to manage the relations of your contents in a multilingual multisite-installation. … … 42 42 */ 43 43 if ( ! defined( 'MSLS_PLUGIN_VERSION' ) ) { 44 define( 'MSLS_PLUGIN_VERSION', '2.10. 0' );44 define( 'MSLS_PLUGIN_VERSION', '2.10.1' ); 45 45 define( 'MSLS_PLUGIN_PATH', plugin_basename( __FILE__ ) ); 46 46 define( 'MSLS_PLUGIN__FILE__', __FILE__ ); -
multisite-language-switcher/trunk/assets/css-flags/flags.php
r3409411 r3414079 4 4 * File is auto-generated 5 5 * 6 * 131 translations-teams for WordPress found6 * 131 translations-teams for WordPress found 7 7 */ 8 8 // Unhandled language: am (Amharic) … … 33 33 'da_DK' => 'flag-icon-dk', 34 34 'de_AT' => 'flag-icon-at', 35 'de_CH_informal' => 'flag-icon-ch',36 35 'de_DE' => 'flag-icon-de', 37 36 'de_DE_formal' => 'flag-icon-de', 38 37 'de_CH' => 'flag-icon-ch', 38 'de_CH_informal' => 'flag-icon-ch', 39 39 'dzo' => 'flag-icon-bt', 40 40 'el' => 'flag-icon-gr', … … 98 98 'nb_NO' => 'flag-icon-no', 99 99 'ne_NP' => 'flag-icon-np', 100 'nl_BE' => 'flag-icon-be', 100 101 'nl_NL' => 'flag-icon-nl', 101 'nl_BE' => 'flag-icon-be',102 102 'nl_NL_formal' => 'flag-icon-nl', 103 103 'nn_NO' => 'flag-icon-no', -
multisite-language-switcher/trunk/assets/flags/flags.php
r3409411 r3414079 4 4 * File is auto-generated 5 5 * 6 * 131 translations-teams for WordPress found6 * 131 translations-teams for WordPress found 7 7 */ 8 8 // Unhandled language: am (Amharic) … … 33 33 'da_DK' => 'dk.png', 34 34 'de_AT' => 'at.png', 35 'de_CH_informal' => 'ch.png',36 35 'de_DE' => 'de.png', 37 36 'de_DE_formal' => 'de.png', 38 37 'de_CH' => 'ch.png', 38 'de_CH_informal' => 'ch.png', 39 39 'dzo' => 'bt.png', 40 40 'el' => 'gr.png', … … 98 98 'nb_NO' => 'no.png', 99 99 'ne_NP' => 'np.png', 100 'nl_BE' => 'be.png', 100 101 'nl_NL' => 'nl.png', 101 'nl_BE' => 'be.png',102 102 'nl_NL_formal' => 'nl.png', 103 103 'nn_NO' => 'no.png', -
multisite-language-switcher/trunk/assets/js/msls-widget-block/block.json
r3409411 r3414079 6 6 "category": "widgets", 7 7 "name": "lloc/msls-widget-block", 8 "version": "2.10. 0",8 "version": "2.10.1", 9 9 "description": "Review the settings for the Multisite Language Switcher plugin, as the block utilizes the API function `the_msls()` for its output.", 10 10 "example": {}, -
multisite-language-switcher/trunk/includes/MslsPlugin.php
r3409411 r3414079 207 207 * deleted after the uninstall procedure. 208 208 * 209 * @return boolean210 */ 211 public static function uninstall() {209 * @return void 210 */ 211 public static function uninstall(): void { 212 212 /** 213 213 * We want to be sure that the user has not deactivated the … … 226 226 } 227 227 228 returnself::cleanup();228 self::cleanup(); 229 229 } 230 230 -
multisite-language-switcher/trunk/includes/deprectated.php
r3409411 r3414079 6 6 * Deprecated: Get the output for using the links to the translations in your code. 7 7 * 8 * @deprecated 2. 9.7 Use msls_get_the_msls()8 * @deprecated 2.10.1 Use msls_get_switcher() 9 9 * 10 10 * @param mixed $attr … … 14 14 // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound 15 15 function get_the_msls( $attr ): string { 16 _deprecated_function( __FUNCTION__, '2. 9.7', 'msls_get_the_msls' );16 _deprecated_function( __FUNCTION__, '2.10.1', 'msls_get_switcher' ); 17 17 18 18 return msls_get_switcher( $attr ); … … 22 22 * Deprecated: Output the links to the translations in your template. 23 23 * 24 * @deprecated 2. 9.7 Use msls_the_msls()24 * @deprecated 2.10.1 Use msls_the_switcher() 25 25 * 26 26 * @param string[] $arr … … 28 28 // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound 29 29 function the_msls( array $arr = array() ): void { 30 _deprecated_function( __FUNCTION__, '2. 9.7', 'msls_the_msls' );30 _deprecated_function( __FUNCTION__, '2.10.1', 'msls_the_switcher' ); 31 31 msls_the_switcher( $arr ); 32 32 } … … 35 35 * Deprecated: Gets the URL of the country flag-icon for a specific locale. 36 36 * 37 * @deprecated 2. 9.7Use msls_get_flag_url()37 * @deprecated 2.10.1 Use msls_get_flag_url() 38 38 * 39 39 * @param string $locale … … 43 43 // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound 44 44 function get_msls_flag_url( string $locale ): string { 45 _deprecated_function( __FUNCTION__, '2. 9.7', 'msls_get_flag_url' );45 _deprecated_function( __FUNCTION__, '2.10.1', 'msls_get_flag_url' ); 46 46 47 47 return msls_get_flag_url( $locale ); … … 51 51 * Deprecated: Gets the description for a blog for a specific locale. 52 52 * 53 * @deprecated 2. 9.7Use msls_get_blog_description()53 * @deprecated 2.10.1 Use msls_get_blog_description() 54 54 * 55 55 * @param string $locale … … 60 60 // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound 61 61 function get_msls_blog_description( string $locale, string $preset = '' ): string { 62 _deprecated_function( __FUNCTION__, '2. 9.7', 'msls_get_blog_description' );62 _deprecated_function( __FUNCTION__, '2.10.1', 'msls_get_blog_description' ); 63 63 64 64 return msls_get_blog_description( $locale, $preset ); … … 68 68 * Deprecated: Gets the permalink for a translation of the current post in a given language. 69 69 * 70 * @deprecated 2. 9.7Use msls_get_permalink()70 * @deprecated 2.10.1 Use msls_get_permalink() 71 71 * 72 72 * @param string $locale … … 77 77 // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedFunctionFound 78 78 function get_msls_permalink( string $locale, string $preset = '' ): string { 79 _deprecated_function( __FUNCTION__, '2. 9.7', 'msls_get_permalink' );79 _deprecated_function( __FUNCTION__, '2.10.1', 'msls_get_permalink' ); 80 80 81 81 return msls_get_permalink( $locale, $preset ); -
multisite-language-switcher/trunk/vendor/composer/autoload_static.php
r3287198 r3414079 8 8 { 9 9 public static $prefixLengthsPsr4 = array ( 10 'l' => 10 'l' => 11 11 array ( 12 12 'lloc\\Msls\\' => 10, 13 13 ), 14 'C' => 14 'C' => 15 15 array ( 16 16 'Composer\\Installers\\' => 20, … … 19 19 20 20 public static $prefixDirsPsr4 = array ( 21 'lloc\\Msls\\' => 21 'lloc\\Msls\\' => 22 22 array ( 23 23 0 => __DIR__ . '/../..' . '/includes', 24 24 ), 25 'Composer\\Installers\\' => 25 'Composer\\Installers\\' => 26 26 array ( 27 27 0 => __DIR__ . '/..' . '/composer/installers/src/Composer/Installers', -
multisite-language-switcher/trunk/vendor/composer/installed.php
r3409411 r3414079 2 2 'root' => array( 3 3 'name' => 'lloc/multisite-language-switcher', 4 'pretty_version' => '2.10. 0',5 'version' => '2.10. 0.0',6 'reference' => ' 897c7ea2766f60104e532f9183a1eccbbba090ac',4 'pretty_version' => '2.10.1', 5 'version' => '2.10.1.0', 6 'reference' => 'f04b60335851d0d906a5cf8e738da28726c08131', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 21 21 ), 22 22 'lloc/multisite-language-switcher' => array( 23 'pretty_version' => '2.10. 0',24 'version' => '2.10. 0.0',25 'reference' => ' 897c7ea2766f60104e532f9183a1eccbbba090ac',23 'pretty_version' => '2.10.1', 24 'version' => '2.10.1.0', 25 'reference' => 'f04b60335851d0d906a5cf8e738da28726c08131', 26 26 'type' => 'wordpress-plugin', 27 27 'install_path' => __DIR__ . '/../../',
Note: See TracChangeset
for help on using the changeset viewer.