Plugin Directory

Changeset 3071855


Ignore:
Timestamp:
04/16/2024 05:22:31 PM (22 months ago)
Author:
petersplugins
Message:

v 5.0.2 CLEANUP

Location:
smart-custom-display-name
Files:
1 deleted
26 edited
1 moved

Legend:

Unmodified
Added
Removed
  • smart-custom-display-name/tags/5.0.2/inc/class-smart-custom-display-name-admin.php

    r2974403 r3071855  
    1616if ( !class_exists( 'PP_Smart_Custom_Display_Name_Admin' ) ) {
    1717 
    18   class PP_Smart_Custom_Display_Name_Admin extends PPF08_Admin {
     18  class PP_Smart_Custom_Display_Name_Admin extends PPF09_Admin {
    1919
    2020   
     
    5252            'icon'    => 'info',
    5353            '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>',                   
    5655            'nosubmit' => true
    5756       
  • smart-custom-display-name/tags/5.0.2/inc/class-smart-custom-display-name.php

    r2974403 r3071855  
    1717if ( !class_exists( 'PP_Smart_Custom_Display_Name' ) ) {
    1818
    19   class PP_Smart_Custom_Display_Name extends PPF08_Plugin {
     19  class PP_Smart_Custom_Display_Name extends PPF09_Plugin {
    2020   
    2121    /**
  • smart-custom-display-name/tags/5.0.2/inc/ppf/loader.php

    r2974403 r3071855  
    44 * Plugin Foundation Loader
    55 *
    6  * Peter's Plugins Foundation 08
     6 * Peter's Plugins Foundation 09
    77 *
    8  * @package    PPF08
     8 * @package    PPF09
    99 * @author     Peter Raschendorfer
    1010 * @license    GPL2+
  • smart-custom-display-name/tags/5.0.2/inc/ppf/ppf-admin.php

    r2974403 r3071855  
    44 * Admin Class
    55 *
    6  * Peter's Plugins Foundation 08
     6 * Peter's Plugins Foundation 09
    77 *
    8  * @package    PPF08
     8 * @package    PPF09
    99 * @author     Peter Raschendorfer
    1010 * @license    GPL2+
    1111 */
    1212 
    13 if ( !class_exists( 'PPF08_Admin' ) ) {
     13if ( !class_exists( 'PPF09_Admin' ) ) {
    1414 
    1515 
    16   abstract class PPF08_Admin extends PPF08_SubClass {
     16  abstract class PPF09_Admin extends PPF09_SubClass {
    1717   
    1818   
     
    502502      echo '<div class="pp-admin-page-header">';
    503503      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>';
    505507      $this->print_setting_sections_nav();
    506508      echo '</div>';
  • smart-custom-display-name/tags/5.0.2/inc/ppf/ppf-class.php

    r2974403 r3071855  
    44 * Base Class
    55 *
    6  * Peter's Plugins Foundation 08
     6 * Peter's Plugins Foundation 09
    77 *
    8  * @package    PPF08
     8 * @package    PPF09
    99 * @author     Peter Raschendorfer
    1010 * @license    GPL2+
     
    2020
    2121 
    22 if ( !class_exists( 'PPF08_Class' ) ) {
     22if ( !class_exists( 'PPF09_Class' ) ) {
    2323 
    2424 
    25   abstract class PPF08_Class {
     25  abstract class PPF09_Class {
    2626   
    2727   
  • smart-custom-display-name/tags/5.0.2/inc/ppf/ppf-plugin-addon.php

    r2974403 r3071855  
    44 * Plugin Addon Base Class
    55 *
    6  * Peter's Plugins Foundation 08
     6 * Peter's Plugins Foundation 09
    77 *
    8  * @package    PPF08
     8 * @package    PPF09
    99 * @author     Peter Raschendorfer
    1010 * @license    GPL2+
     
    1212
    1313 
    14 if ( !class_exists( 'PPF08_Plugin_Addon' ) ) {
     14if ( !class_exists( 'PPF09_Plugin_Addon' ) ) {
    1515 
    16   abstract class PPF08_Plugin_Addon extends PPF08_Plugin {
     16  abstract class PPF09_Plugin_Addon extends PPF09_Plugin {
    1717   
    1818    /**
  • smart-custom-display-name/tags/5.0.2/inc/ppf/ppf-plugin.php

    r2974403 r3071855  
    44 * Plugin Base Class
    55 *
    6  * Peter's Plugins Foundation 08
     6 * Peter's Plugins Foundation 09
    77 *
    8  * @package    PPF08
     8 * @package    PPF09
    99 * @author     Peter Raschendorfer
    1010 * @license    GPL2+
     
    1212
    1313 
    14 if ( !class_exists( 'PPF08_Plugin' ) ) {
     14if ( !class_exists( 'PPF0_Plugin' ) ) {
    1515 
    16   abstract class PPF08_Plugin extends PPF08_Class {
     16  abstract class PPF09_Plugin extends PPF09_Class {
    1717   
    1818    /**
  • smart-custom-display-name/tags/5.0.2/inc/ppf/ppf-settings.php

    r2974403 r3071855  
    44 * Settings Class
    55 *
    6  * Peter's Plugins Foundation 08
     6 * Peter's Plugins Foundation 09
    77 *
    8  * @package    PPF08
     8 * @package    PPF09
    99 * @author     Peter Raschendorfer
    1010 * @license    GPL2+
    1111 */
    1212 
    13 if ( !class_exists( 'PPF08_Settings' ) ) {
    14  
    15  
    16   abstract class PPF08_Settings extends PPF08_SubClass {
     13if ( !class_exists( 'PPF09_Settings' ) ) {
     14 
     15 
     16  abstract class PPF09_Settings extends PPF09_SubClass {
    1717 
    1818    /**
  • smart-custom-display-name/tags/5.0.2/inc/ppf/ppf-subclass.php

    r2974403 r3071855  
    44 * Plugin Base Sub-Class
    55 *
    6  * Peter's Plugins Foundation 08
     6 * Peter's Plugins Foundation 09
    77 *
    8  * @package    PPF08
     8 * @package    PPF09
    99 * @author     Peter Raschendorfer
    1010 * @license    GPL2+
    1111 */
    1212 
    13 if ( !class_exists( 'PPF08_SubClass' ) ) {
     13if ( !class_exists( 'PPF09_SubClass' ) ) {
    1414 
    1515 
    16   abstract class PPF08_SubClass extends PPF08_Class {
     16  abstract class PPF09_SubClass extends PPF09_Class {
    1717   
    1818    /**
  • smart-custom-display-name/tags/5.0.2/loader.php

    r2974403 r3071855  
    3737    'name'      => 'Smart Custom Display Name',
    3838    'shortname' => 'Smart Custom Display Name',
    39     'version'   => '5.0.1'
     39    'version'   => '5.0.2'
    4040  ) );
    4141   
  • smart-custom-display-name/tags/5.0.2/readme.txt

    r2978154 r3071855  
    44Requires at least: 4.0
    55Tested up to: 6.3
    6 Stable tag: 5.0.1
     6Stable tag: 5.0.2
    77Requires PHP: 7.0
    88License: GPLv2 or later
     
    3434
    3535== Changelog ==
     36
     37= 5.0.2 (2024-04-16) CLEANUP =
     38* Cleanup
    3639
    3740= 5.0.1 (2022-10-03) FINAL VERSION =
  • smart-custom-display-name/tags/5.0.2/smart-custom-display-name.php

    r2974403 r3071855  
    1010 * Plugin URI: https://wordpress.org/plugins/smart-custom-display-name/
    1111 * Description: Set users "Display Name" to any custom value
    12  * Version: 5.0.1
     12 * Version: 5.0.2
    1313 * Author: Peter Raschendorfer
    1414 * Author URI: https://profiles.wordpress.org/petersplugins/
  • smart-custom-display-name/trunk/inc/class-smart-custom-display-name-admin.php

    r2974403 r3071855  
    1616if ( !class_exists( 'PP_Smart_Custom_Display_Name_Admin' ) ) {
    1717 
    18   class PP_Smart_Custom_Display_Name_Admin extends PPF08_Admin {
     18  class PP_Smart_Custom_Display_Name_Admin extends PPF09_Admin {
    1919
    2020   
     
    5252            'icon'    => 'info',
    5353            '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>',                   
    5655            'nosubmit' => true
    5756       
  • smart-custom-display-name/trunk/inc/class-smart-custom-display-name.php

    r2735757 r3071855  
    1717if ( !class_exists( 'PP_Smart_Custom_Display_Name' ) ) {
    1818
    19   class PP_Smart_Custom_Display_Name extends PPF08_Plugin {
     19  class PP_Smart_Custom_Display_Name extends PPF09_Plugin {
    2020   
    2121    /**
  • smart-custom-display-name/trunk/inc/ppf/loader.php

    r2804836 r3071855  
    44 * Plugin Foundation Loader
    55 *
    6  * Peter's Plugins Foundation 08
     6 * Peter's Plugins Foundation 09
    77 *
    8  * @package    PPF08
     8 * @package    PPF09
    99 * @author     Peter Raschendorfer
    1010 * @license    GPL2+
  • smart-custom-display-name/trunk/inc/ppf/ppf-admin.php

    r2804836 r3071855  
    44 * Admin Class
    55 *
    6  * Peter's Plugins Foundation 08
     6 * Peter's Plugins Foundation 09
    77 *
    8  * @package    PPF08
     8 * @package    PPF09
    99 * @author     Peter Raschendorfer
    1010 * @license    GPL2+
    1111 */
    1212 
    13 if ( !class_exists( 'PPF08_Admin' ) ) {
     13if ( !class_exists( 'PPF09_Admin' ) ) {
    1414 
    1515 
    16   abstract class PPF08_Admin extends PPF08_SubClass {
     16  abstract class PPF09_Admin extends PPF09_SubClass {
    1717   
    1818   
     
    502502      echo '<div class="pp-admin-page-header">';
    503503      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>';
    505507      $this->print_setting_sections_nav();
    506508      echo '</div>';
  • smart-custom-display-name/trunk/inc/ppf/ppf-class.php

    r2804836 r3071855  
    44 * Base Class
    55 *
    6  * Peter's Plugins Foundation 08
     6 * Peter's Plugins Foundation 09
    77 *
    8  * @package    PPF08
     8 * @package    PPF09
    99 * @author     Peter Raschendorfer
    1010 * @license    GPL2+
     
    2020
    2121 
    22 if ( !class_exists( 'PPF08_Class' ) ) {
     22if ( !class_exists( 'PPF09_Class' ) ) {
    2323 
    2424 
    25   abstract class PPF08_Class {
     25  abstract class PPF09_Class {
    2626   
    2727   
  • smart-custom-display-name/trunk/inc/ppf/ppf-plugin-addon.php

    r2804836 r3071855  
    44 * Plugin Addon Base Class
    55 *
    6  * Peter's Plugins Foundation 08
     6 * Peter's Plugins Foundation 09
    77 *
    8  * @package    PPF08
     8 * @package    PPF09
    99 * @author     Peter Raschendorfer
    1010 * @license    GPL2+
     
    1212
    1313 
    14 if ( !class_exists( 'PPF08_Plugin_Addon' ) ) {
     14if ( !class_exists( 'PPF09_Plugin_Addon' ) ) {
    1515 
    16   abstract class PPF08_Plugin_Addon extends PPF08_Plugin {
     16  abstract class PPF09_Plugin_Addon extends PPF09_Plugin {
    1717   
    1818    /**
  • smart-custom-display-name/trunk/inc/ppf/ppf-plugin.php

    r2804836 r3071855  
    44 * Plugin Base Class
    55 *
    6  * Peter's Plugins Foundation 08
     6 * Peter's Plugins Foundation 09
    77 *
    8  * @package    PPF08
     8 * @package    PPF09
    99 * @author     Peter Raschendorfer
    1010 * @license    GPL2+
     
    1212
    1313 
    14 if ( !class_exists( 'PPF08_Plugin' ) ) {
     14if ( !class_exists( 'PPF0_Plugin' ) ) {
    1515 
    16   abstract class PPF08_Plugin extends PPF08_Class {
     16  abstract class PPF09_Plugin extends PPF09_Class {
    1717   
    1818    /**
  • smart-custom-display-name/trunk/inc/ppf/ppf-settings.php

    r2804836 r3071855  
    44 * Settings Class
    55 *
    6  * Peter's Plugins Foundation 08
     6 * Peter's Plugins Foundation 09
    77 *
    8  * @package    PPF08
     8 * @package    PPF09
    99 * @author     Peter Raschendorfer
    1010 * @license    GPL2+
    1111 */
    1212 
    13 if ( !class_exists( 'PPF08_Settings' ) ) {
    14  
    15  
    16   abstract class PPF08_Settings extends PPF08_SubClass {
     13if ( !class_exists( 'PPF09_Settings' ) ) {
     14 
     15 
     16  abstract class PPF09_Settings extends PPF09_SubClass {
    1717 
    1818    /**
  • smart-custom-display-name/trunk/inc/ppf/ppf-subclass.php

    r2804836 r3071855  
    44 * Plugin Base Sub-Class
    55 *
    6  * Peter's Plugins Foundation 08
     6 * Peter's Plugins Foundation 09
    77 *
    8  * @package    PPF08
     8 * @package    PPF09
    99 * @author     Peter Raschendorfer
    1010 * @license    GPL2+
    1111 */
    1212 
    13 if ( !class_exists( 'PPF08_SubClass' ) ) {
     13if ( !class_exists( 'PPF09_SubClass' ) ) {
    1414 
    1515 
    16   abstract class PPF08_SubClass extends PPF08_Class {
     16  abstract class PPF09_SubClass extends PPF09_Class {
    1717   
    1818    /**
  • smart-custom-display-name/trunk/loader.php

    r2974403 r3071855  
    3737    'name'      => 'Smart Custom Display Name',
    3838    'shortname' => 'Smart Custom Display Name',
    39     'version'   => '5.0.1'
     39    'version'   => '5.0.2'
    4040  ) );
    4141   
  • smart-custom-display-name/trunk/readme.txt

    r2978154 r3071855  
    44Requires at least: 4.0
    55Tested up to: 6.3
    6 Stable tag: 5.0.1
     6Stable tag: 5.0.2
    77Requires PHP: 7.0
    88License: GPLv2 or later
     
    3434
    3535== Changelog ==
     36
     37= 5.0.2 (2024-04-16) CLEANUP =
     38* Cleanup
    3639
    3740= 5.0.1 (2022-10-03) FINAL VERSION =
  • smart-custom-display-name/trunk/smart-custom-display-name.php

    r2974403 r3071855  
    1010 * Plugin URI: https://wordpress.org/plugins/smart-custom-display-name/
    1111 * Description: Set users "Display Name" to any custom value
    12  * Version: 5.0.1
     12 * Version: 5.0.2
    1313 * Author: Peter Raschendorfer
    1414 * Author URI: https://profiles.wordpress.org/petersplugins/
Note: See TracChangeset for help on using the changeset viewer.