Changeset 14073
- Timestamp:
- 09/24/2024 01:40:05 AM (6 months ago)
- 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 4 4 use WordPressdotorg\Plugin_Directory\Tools; 5 5 6 class Plugin_Approved extends Base {6 class Plugin_Approved extends Markdown_Base { 7 7 protected $required_args = []; 8 8 … … 15 15 } 16 16 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 */ 19 19 $email_text = __( 20 20 'Congratulations, the plugin hosting request for %1$s has been approved. … … 30 30 31 31 * 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.org33 * You r username is case sensitive32 * 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). 34 34 * SVN will not accept your email address as a username 35 35 * Due to the size of the directory, it may take 72 hours before all search results are properly updated … … 37 37 To help you get started, here are some links: 38 38 39 Using Subversion with the WordPress Plugin Directory: 39 Using Subversion with the WordPress Plugin Directory:<br> 40 40 https://developer.wordpress.org/plugins/wordpress-org/how-to-use-subversion/ 41 41 42 FAQ about the WordPress Plugin Directory: 42 Generating your SVN Password:<br> 43 https://make.wordpress.org/meta/handbook/tutorials-guides/svn-access/ 44 45 FAQ about the WordPress Plugin Directory:<br> 43 46 https://developer.wordpress.org/plugins/wordpress-org/plugin-developer-faq/ 44 47 45 WordPress Plugin Directory readme.txt standard: 48 WordPress Plugin Directory readme.txt standard:<br> 46 49 https://wordpress.org/plugins/developers/#readme 47 50 48 A readme.txt validator: 51 A readme.txt validator:<br> 49 52 https://wordpress.org/plugins/developers/readme-validator/ 50 53 51 Plugin Assets (header images, etc): 54 Plugin Assets (header images, etc):<br> 52 55 https://developer.wordpress.org/plugins/wordpress-org/plugin-assets/ 53 56 54 WordPress Plugin Directory Guidelines: 57 WordPress Plugin Directory Guidelines:<br> 55 58 https://developer.wordpress.org/plugins/wordpress-org/detailed-plugin-guidelines/ 56 59 57 Block Specific Plugin Guidelines: 60 Block Specific Plugin Guidelines:<br> 58 61 https://developer.wordpress.org/plugins/wordpress-org/block-specific-plugin-guidelines/ 59 62 … … 66 69 $this->plugin->post_title, 67 70 $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" 69 73 ); 70 74 }
Note: See TracChangeset
for help on using the changeset viewer.