Making WordPress.org

Changeset 14073


Ignore:
Timestamp:
09/24/2024 01:40:05 AM (6 months ago)
Author:
dufresnesteven
Message:

plugin-directory: Add SVN password generation information for plugin approval email.

Props: frantorres, dd32, davidperez.
See: https://github.com/WordPress/wordpress.org/pull/362

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/email/class-plugin-approved.php

    r10394 r14073  
    44use WordPressdotorg\Plugin_Directory\Tools;
    55
    6 class Plugin_Approved extends Base {
     6class Plugin_Approved extends Markdown_Base {
    77    protected $required_args = [];
    88
     
    1515    }
    1616
    17     function body() {
    18         /* translators: 1: plugin name, 2: plugin author's username, 3: plugin slug */
     17    function markdown() {
     18        /* translators: 1: plugin name, 2: plugin author's username, 3: plugin slug, 4: link to plugin authors profile */
    1919        $email_text = __(
    2020'Congratulations, the plugin hosting request for %1$s has been approved.
     
    3030
    3131* You must use SVN to upload your code -- we are unable to do that for you
    32 * Your SVN username is %2$s and your password is the same as you use to log in to WordPress.org
    33 * Your username is case sensitive
     32* Your SVN username is `%2$s` and is case sensitive.
     33* You can <strong>set up your SVN credentials</strong> (if you haven\'t already) in the "Account & Security" section of your [WordPress.org profile](%4$s).
    3434* SVN will not accept your email address as a username
    3535* Due to the size of the directory, it may take 72 hours before all search results are properly updated
     
    3737To help you get started, here are some links:
    3838
    39 Using Subversion with the WordPress Plugin Directory:
     39Using Subversion with the WordPress Plugin Directory:<br>
    4040https://developer.wordpress.org/plugins/wordpress-org/how-to-use-subversion/
    4141
    42 FAQ about the WordPress Plugin Directory:
     42Generating your SVN Password:<br>
     43https://make.wordpress.org/meta/handbook/tutorials-guides/svn-access/
     44
     45FAQ about the WordPress Plugin Directory:<br>
    4346https://developer.wordpress.org/plugins/wordpress-org/plugin-developer-faq/
    4447
    45 WordPress Plugin Directory readme.txt standard:
     48WordPress Plugin Directory readme.txt standard:<br>
    4649https://wordpress.org/plugins/developers/#readme
    4750
    48 A readme.txt validator:
     51A readme.txt validator:<br>
    4952https://wordpress.org/plugins/developers/readme-validator/
    5053
    51 Plugin Assets (header images, etc):
     54Plugin Assets (header images, etc):<br>
    5255https://developer.wordpress.org/plugins/wordpress-org/plugin-assets/
    5356
    54 WordPress Plugin Directory Guidelines:
     57WordPress Plugin Directory Guidelines:<br>
    5558https://developer.wordpress.org/plugins/wordpress-org/detailed-plugin-guidelines/
    5659
    57 Block Specific Plugin Guidelines:
     60Block Specific Plugin Guidelines:<br>
    5861https://developer.wordpress.org/plugins/wordpress-org/block-specific-plugin-guidelines/
    5962
     
    6669            $this->plugin->post_title,
    6770            $this->user->user_login,
    68             $this->plugin->post_name
     71            $this->plugin->post_name,
     72            "https://profiles.wordpress.org/{$this->user->user_nicename}/profile/edit/group/3/?screen=svn-password"
    6973        );
    7074    }
Note: See TracChangeset for help on using the changeset viewer.