Changeset 3071855
- Timestamp:
- 04/16/2024 05:22:31 PM (22 months ago)
- Location:
- smart-custom-display-name
- Files:
-
- 1 deleted
- 26 edited
- 1 moved
-
assets/icon-128x128.png (modified) (previous)
-
assets/icon-256x256.png (modified) (previous)
-
assets/icon.svg (deleted)
-
tags/5.0.2 (moved) (moved from smart-custom-display-name/tags/5.0.1)
-
tags/5.0.2/inc/class-smart-custom-display-name-admin.php (modified) (2 diffs)
-
tags/5.0.2/inc/class-smart-custom-display-name.php (modified) (1 diff)
-
tags/5.0.2/inc/ppf/loader.php (modified) (1 diff)
-
tags/5.0.2/inc/ppf/ppf-admin.php (modified) (2 diffs)
-
tags/5.0.2/inc/ppf/ppf-class.php (modified) (2 diffs)
-
tags/5.0.2/inc/ppf/ppf-plugin-addon.php (modified) (2 diffs)
-
tags/5.0.2/inc/ppf/ppf-plugin.php (modified) (2 diffs)
-
tags/5.0.2/inc/ppf/ppf-settings.php (modified) (1 diff)
-
tags/5.0.2/inc/ppf/ppf-subclass.php (modified) (1 diff)
-
tags/5.0.2/loader.php (modified) (1 diff)
-
tags/5.0.2/readme.txt (modified) (2 diffs)
-
tags/5.0.2/smart-custom-display-name.php (modified) (1 diff)
-
trunk/inc/class-smart-custom-display-name-admin.php (modified) (2 diffs)
-
trunk/inc/class-smart-custom-display-name.php (modified) (1 diff)
-
trunk/inc/ppf/loader.php (modified) (1 diff)
-
trunk/inc/ppf/ppf-admin.php (modified) (2 diffs)
-
trunk/inc/ppf/ppf-class.php (modified) (2 diffs)
-
trunk/inc/ppf/ppf-plugin-addon.php (modified) (2 diffs)
-
trunk/inc/ppf/ppf-plugin.php (modified) (2 diffs)
-
trunk/inc/ppf/ppf-settings.php (modified) (1 diff)
-
trunk/inc/ppf/ppf-subclass.php (modified) (1 diff)
-
trunk/loader.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/smart-custom-display-name.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
smart-custom-display-name/tags/5.0.2/inc/class-smart-custom-display-name-admin.php
r2974403 r3071855 16 16 if ( !class_exists( 'PP_Smart_Custom_Display_Name_Admin' ) ) { 17 17 18 class PP_Smart_Custom_Display_Name_Admin extends PPF0 8_Admin {18 class PP_Smart_Custom_Display_Name_Admin extends PPF09_Admin { 19 19 20 20 … … 52 52 'icon' => 'info', 53 53 'html' => '<p>' . esc_html__( 'This plugin allows you to change the users Display Name to anything you like', 'smart-custom-display-name' ) . '</p> 54 <p>' . esc_html__( 'There are no settings. When activated the plugin changes the "Display name publicly as" field on the user settings page from a select box where you only can choose from maximum 6 possible values to a regular text input field where you can type in anything you like.', 'smart-custom-display-name' ) . '</p>' . 55 '<h2>PLEASE NOTE</h2><p>Development, maintenance and support of this plugin has been retired. You can use this plugin as long as is works for you. Thanks for your understanding.<br />Regards, Peter</p>', 54 <p>' . esc_html__( 'There are no settings. When activated the plugin changes the "Display name publicly as" field on the user settings page from a select box where you only can choose from maximum 6 possible values to a regular text input field where you can type in anything you like.', 'smart-custom-display-name' ) . '</p>', 56 55 'nosubmit' => true 57 56 -
smart-custom-display-name/tags/5.0.2/inc/class-smart-custom-display-name.php
r2974403 r3071855 17 17 if ( !class_exists( 'PP_Smart_Custom_Display_Name' ) ) { 18 18 19 class PP_Smart_Custom_Display_Name extends PPF0 8_Plugin {19 class PP_Smart_Custom_Display_Name extends PPF09_Plugin { 20 20 21 21 /** -
smart-custom-display-name/tags/5.0.2/inc/ppf/loader.php
r2974403 r3071855 4 4 * Plugin Foundation Loader 5 5 * 6 * Peter's Plugins Foundation 0 86 * Peter's Plugins Foundation 09 7 7 * 8 * @package PPF0 88 * @package PPF09 9 9 * @author Peter Raschendorfer 10 10 * @license GPL2+ -
smart-custom-display-name/tags/5.0.2/inc/ppf/ppf-admin.php
r2974403 r3071855 4 4 * Admin Class 5 5 * 6 * Peter's Plugins Foundation 0 86 * Peter's Plugins Foundation 09 7 7 * 8 * @package PPF0 88 * @package PPF09 9 9 * @author Peter Raschendorfer 10 10 * @license GPL2+ 11 11 */ 12 12 13 if ( !class_exists( 'PPF0 8_Admin' ) ) {13 if ( !class_exists( 'PPF09_Admin' ) ) { 14 14 15 15 16 abstract class PPF0 8_Admin extends PPF08_SubClass {16 abstract class PPF09_Admin extends PPF09_SubClass { 17 17 18 18 … … 502 502 echo '<div class="pp-admin-page-header">'; 503 503 echo $this->_toolbar; 504 echo '<div class="pp-admin-page-title"><h1>' . $this->core()->get_plugin_shortname() . '</h1></div>'; 504 echo '<div class="pp-admin-page-title"><h1>' . $this->core()->get_plugin_shortname() . '</h1>'; 505 echo '<p><strong>PLEASE NOTE</strong><br />Development, maintenance and support of this plugin has been retired. You can use this plugin as long as is works for you. Thanks for your understanding.<br />Regards, Peter</p>'; 506 echo '</div>'; 505 507 $this->print_setting_sections_nav(); 506 508 echo '</div>'; -
smart-custom-display-name/tags/5.0.2/inc/ppf/ppf-class.php
r2974403 r3071855 4 4 * Base Class 5 5 * 6 * Peter's Plugins Foundation 0 86 * Peter's Plugins Foundation 09 7 7 * 8 * @package PPF0 88 * @package PPF09 9 9 * @author Peter Raschendorfer 10 10 * @license GPL2+ … … 20 20 21 21 22 if ( !class_exists( 'PPF0 8_Class' ) ) {22 if ( !class_exists( 'PPF09_Class' ) ) { 23 23 24 24 25 abstract class PPF0 8_Class {25 abstract class PPF09_Class { 26 26 27 27 -
smart-custom-display-name/tags/5.0.2/inc/ppf/ppf-plugin-addon.php
r2974403 r3071855 4 4 * Plugin Addon Base Class 5 5 * 6 * Peter's Plugins Foundation 0 86 * Peter's Plugins Foundation 09 7 7 * 8 * @package PPF0 88 * @package PPF09 9 9 * @author Peter Raschendorfer 10 10 * @license GPL2+ … … 12 12 13 13 14 if ( !class_exists( 'PPF0 8_Plugin_Addon' ) ) {14 if ( !class_exists( 'PPF09_Plugin_Addon' ) ) { 15 15 16 abstract class PPF0 8_Plugin_Addon extends PPF08_Plugin {16 abstract class PPF09_Plugin_Addon extends PPF09_Plugin { 17 17 18 18 /** -
smart-custom-display-name/tags/5.0.2/inc/ppf/ppf-plugin.php
r2974403 r3071855 4 4 * Plugin Base Class 5 5 * 6 * Peter's Plugins Foundation 0 86 * Peter's Plugins Foundation 09 7 7 * 8 * @package PPF0 88 * @package PPF09 9 9 * @author Peter Raschendorfer 10 10 * @license GPL2+ … … 12 12 13 13 14 if ( !class_exists( 'PPF0 8_Plugin' ) ) {14 if ( !class_exists( 'PPF0_Plugin' ) ) { 15 15 16 abstract class PPF0 8_Plugin extends PPF08_Class {16 abstract class PPF09_Plugin extends PPF09_Class { 17 17 18 18 /** -
smart-custom-display-name/tags/5.0.2/inc/ppf/ppf-settings.php
r2974403 r3071855 4 4 * Settings Class 5 5 * 6 * Peter's Plugins Foundation 0 86 * Peter's Plugins Foundation 09 7 7 * 8 * @package PPF0 88 * @package PPF09 9 9 * @author Peter Raschendorfer 10 10 * @license GPL2+ 11 11 */ 12 12 13 if ( !class_exists( 'PPF0 8_Settings' ) ) {14 15 16 abstract class PPF0 8_Settings extends PPF08_SubClass {13 if ( !class_exists( 'PPF09_Settings' ) ) { 14 15 16 abstract class PPF09_Settings extends PPF09_SubClass { 17 17 18 18 /** -
smart-custom-display-name/tags/5.0.2/inc/ppf/ppf-subclass.php
r2974403 r3071855 4 4 * Plugin Base Sub-Class 5 5 * 6 * Peter's Plugins Foundation 0 86 * Peter's Plugins Foundation 09 7 7 * 8 * @package PPF0 88 * @package PPF09 9 9 * @author Peter Raschendorfer 10 10 * @license GPL2+ 11 11 */ 12 12 13 if ( !class_exists( 'PPF0 8_SubClass' ) ) {13 if ( !class_exists( 'PPF09_SubClass' ) ) { 14 14 15 15 16 abstract class PPF0 8_SubClass extends PPF08_Class {16 abstract class PPF09_SubClass extends PPF09_Class { 17 17 18 18 /** -
smart-custom-display-name/tags/5.0.2/loader.php
r2974403 r3071855 37 37 'name' => 'Smart Custom Display Name', 38 38 'shortname' => 'Smart Custom Display Name', 39 'version' => '5.0. 1'39 'version' => '5.0.2' 40 40 ) ); 41 41 -
smart-custom-display-name/tags/5.0.2/readme.txt
r2978154 r3071855 4 4 Requires at least: 4.0 5 5 Tested up to: 6.3 6 Stable tag: 5.0. 16 Stable tag: 5.0.2 7 7 Requires PHP: 7.0 8 8 License: GPLv2 or later … … 34 34 35 35 == Changelog == 36 37 = 5.0.2 (2024-04-16) CLEANUP = 38 * Cleanup 36 39 37 40 = 5.0.1 (2022-10-03) FINAL VERSION = -
smart-custom-display-name/tags/5.0.2/smart-custom-display-name.php
r2974403 r3071855 10 10 * Plugin URI: https://wordpress.org/plugins/smart-custom-display-name/ 11 11 * Description: Set users "Display Name" to any custom value 12 * Version: 5.0. 112 * Version: 5.0.2 13 13 * Author: Peter Raschendorfer 14 14 * Author URI: https://profiles.wordpress.org/petersplugins/ -
smart-custom-display-name/trunk/inc/class-smart-custom-display-name-admin.php
r2974403 r3071855 16 16 if ( !class_exists( 'PP_Smart_Custom_Display_Name_Admin' ) ) { 17 17 18 class PP_Smart_Custom_Display_Name_Admin extends PPF0 8_Admin {18 class PP_Smart_Custom_Display_Name_Admin extends PPF09_Admin { 19 19 20 20 … … 52 52 'icon' => 'info', 53 53 'html' => '<p>' . esc_html__( 'This plugin allows you to change the users Display Name to anything you like', 'smart-custom-display-name' ) . '</p> 54 <p>' . esc_html__( 'There are no settings. When activated the plugin changes the "Display name publicly as" field on the user settings page from a select box where you only can choose from maximum 6 possible values to a regular text input field where you can type in anything you like.', 'smart-custom-display-name' ) . '</p>' . 55 '<h2>PLEASE NOTE</h2><p>Development, maintenance and support of this plugin has been retired. You can use this plugin as long as is works for you. Thanks for your understanding.<br />Regards, Peter</p>', 54 <p>' . esc_html__( 'There are no settings. When activated the plugin changes the "Display name publicly as" field on the user settings page from a select box where you only can choose from maximum 6 possible values to a regular text input field where you can type in anything you like.', 'smart-custom-display-name' ) . '</p>', 56 55 'nosubmit' => true 57 56 -
smart-custom-display-name/trunk/inc/class-smart-custom-display-name.php
r2735757 r3071855 17 17 if ( !class_exists( 'PP_Smart_Custom_Display_Name' ) ) { 18 18 19 class PP_Smart_Custom_Display_Name extends PPF0 8_Plugin {19 class PP_Smart_Custom_Display_Name extends PPF09_Plugin { 20 20 21 21 /** -
smart-custom-display-name/trunk/inc/ppf/loader.php
r2804836 r3071855 4 4 * Plugin Foundation Loader 5 5 * 6 * Peter's Plugins Foundation 0 86 * Peter's Plugins Foundation 09 7 7 * 8 * @package PPF0 88 * @package PPF09 9 9 * @author Peter Raschendorfer 10 10 * @license GPL2+ -
smart-custom-display-name/trunk/inc/ppf/ppf-admin.php
r2804836 r3071855 4 4 * Admin Class 5 5 * 6 * Peter's Plugins Foundation 0 86 * Peter's Plugins Foundation 09 7 7 * 8 * @package PPF0 88 * @package PPF09 9 9 * @author Peter Raschendorfer 10 10 * @license GPL2+ 11 11 */ 12 12 13 if ( !class_exists( 'PPF0 8_Admin' ) ) {13 if ( !class_exists( 'PPF09_Admin' ) ) { 14 14 15 15 16 abstract class PPF0 8_Admin extends PPF08_SubClass {16 abstract class PPF09_Admin extends PPF09_SubClass { 17 17 18 18 … … 502 502 echo '<div class="pp-admin-page-header">'; 503 503 echo $this->_toolbar; 504 echo '<div class="pp-admin-page-title"><h1>' . $this->core()->get_plugin_shortname() . '</h1></div>'; 504 echo '<div class="pp-admin-page-title"><h1>' . $this->core()->get_plugin_shortname() . '</h1>'; 505 echo '<p><strong>PLEASE NOTE</strong><br />Development, maintenance and support of this plugin has been retired. You can use this plugin as long as is works for you. Thanks for your understanding.<br />Regards, Peter</p>'; 506 echo '</div>'; 505 507 $this->print_setting_sections_nav(); 506 508 echo '</div>'; -
smart-custom-display-name/trunk/inc/ppf/ppf-class.php
r2804836 r3071855 4 4 * Base Class 5 5 * 6 * Peter's Plugins Foundation 0 86 * Peter's Plugins Foundation 09 7 7 * 8 * @package PPF0 88 * @package PPF09 9 9 * @author Peter Raschendorfer 10 10 * @license GPL2+ … … 20 20 21 21 22 if ( !class_exists( 'PPF0 8_Class' ) ) {22 if ( !class_exists( 'PPF09_Class' ) ) { 23 23 24 24 25 abstract class PPF0 8_Class {25 abstract class PPF09_Class { 26 26 27 27 -
smart-custom-display-name/trunk/inc/ppf/ppf-plugin-addon.php
r2804836 r3071855 4 4 * Plugin Addon Base Class 5 5 * 6 * Peter's Plugins Foundation 0 86 * Peter's Plugins Foundation 09 7 7 * 8 * @package PPF0 88 * @package PPF09 9 9 * @author Peter Raschendorfer 10 10 * @license GPL2+ … … 12 12 13 13 14 if ( !class_exists( 'PPF0 8_Plugin_Addon' ) ) {14 if ( !class_exists( 'PPF09_Plugin_Addon' ) ) { 15 15 16 abstract class PPF0 8_Plugin_Addon extends PPF08_Plugin {16 abstract class PPF09_Plugin_Addon extends PPF09_Plugin { 17 17 18 18 /** -
smart-custom-display-name/trunk/inc/ppf/ppf-plugin.php
r2804836 r3071855 4 4 * Plugin Base Class 5 5 * 6 * Peter's Plugins Foundation 0 86 * Peter's Plugins Foundation 09 7 7 * 8 * @package PPF0 88 * @package PPF09 9 9 * @author Peter Raschendorfer 10 10 * @license GPL2+ … … 12 12 13 13 14 if ( !class_exists( 'PPF0 8_Plugin' ) ) {14 if ( !class_exists( 'PPF0_Plugin' ) ) { 15 15 16 abstract class PPF0 8_Plugin extends PPF08_Class {16 abstract class PPF09_Plugin extends PPF09_Class { 17 17 18 18 /** -
smart-custom-display-name/trunk/inc/ppf/ppf-settings.php
r2804836 r3071855 4 4 * Settings Class 5 5 * 6 * Peter's Plugins Foundation 0 86 * Peter's Plugins Foundation 09 7 7 * 8 * @package PPF0 88 * @package PPF09 9 9 * @author Peter Raschendorfer 10 10 * @license GPL2+ 11 11 */ 12 12 13 if ( !class_exists( 'PPF0 8_Settings' ) ) {14 15 16 abstract class PPF0 8_Settings extends PPF08_SubClass {13 if ( !class_exists( 'PPF09_Settings' ) ) { 14 15 16 abstract class PPF09_Settings extends PPF09_SubClass { 17 17 18 18 /** -
smart-custom-display-name/trunk/inc/ppf/ppf-subclass.php
r2804836 r3071855 4 4 * Plugin Base Sub-Class 5 5 * 6 * Peter's Plugins Foundation 0 86 * Peter's Plugins Foundation 09 7 7 * 8 * @package PPF0 88 * @package PPF09 9 9 * @author Peter Raschendorfer 10 10 * @license GPL2+ 11 11 */ 12 12 13 if ( !class_exists( 'PPF0 8_SubClass' ) ) {13 if ( !class_exists( 'PPF09_SubClass' ) ) { 14 14 15 15 16 abstract class PPF0 8_SubClass extends PPF08_Class {16 abstract class PPF09_SubClass extends PPF09_Class { 17 17 18 18 /** -
smart-custom-display-name/trunk/loader.php
r2974403 r3071855 37 37 'name' => 'Smart Custom Display Name', 38 38 'shortname' => 'Smart Custom Display Name', 39 'version' => '5.0. 1'39 'version' => '5.0.2' 40 40 ) ); 41 41 -
smart-custom-display-name/trunk/readme.txt
r2978154 r3071855 4 4 Requires at least: 4.0 5 5 Tested up to: 6.3 6 Stable tag: 5.0. 16 Stable tag: 5.0.2 7 7 Requires PHP: 7.0 8 8 License: GPLv2 or later … … 34 34 35 35 == Changelog == 36 37 = 5.0.2 (2024-04-16) CLEANUP = 38 * Cleanup 36 39 37 40 = 5.0.1 (2022-10-03) FINAL VERSION = -
smart-custom-display-name/trunk/smart-custom-display-name.php
r2974403 r3071855 10 10 * Plugin URI: https://wordpress.org/plugins/smart-custom-display-name/ 11 11 * Description: Set users "Display Name" to any custom value 12 * Version: 5.0. 112 * Version: 5.0.2 13 13 * Author: Peter Raschendorfer 14 14 * Author URI: https://profiles.wordpress.org/petersplugins/
Note: See TracChangeset
for help on using the changeset viewer.