Changeset 13991
- Timestamp:
- 08/26/2024 01:55:40 AM (7 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/email/class-plugin-rejected.php
r13154 r13991 6 6 class Plugin_Rejected extends Markdown_Base { 7 7 protected $required_args = [ 8 'slug',9 8 'submission_date' 10 9 ]; … … 23 22 '###REASON###' => $this->get_rejection_reason(), 24 23 '###NAME###' => $this->plugin->post_title, 25 '###SLUG###' => $this->plugin->post_name,24 '###SLUG###' => ( $this->args['slug'] ?? '' ) ?: $this->plugin->post_name, 26 25 '###SUBMISSION_DATE###' => $this->args['submission_date'], 27 26 ]; … … 58 57 public function reason_3_month() { 59 58 return __( 60 "Your plugin has been rejected because it has been roughly 90 days without significant progress being made on the review we sent , from the email address on record.59 "Your plugin has been rejected because it has been roughly 90 days without significant progress being made on the review we sent to the email address on record at the beginning of the review. 61 60 62 61 https://developer.wordpress.org/plugins/wordpress-org/plugin-developer-faq/#why-was-my-plugin-rejected-after-three-months … … 64 63 <strong>What to do next</strong> 65 64 66 If you no longer wish to have your plugin reviewed, you can simply delete this message. No harm, no foul. 67 68 If you do want to finish your review, please reply to this email and let us know. If you don't remember where you were with the review, please email us the latest version of your code and we'll review that. 65 If you no longer wish to have your plugin reviewed you can simply delete this message. No harm, no foul. 66 67 If you want to finish your review, please do the following: 68 69 - <strong>First</strong>, find the last email we sent you with our latest review, read that email thoroughly and <strong>fix the issues mentioned</strong>. 70 - Once your plugin is corrected, you are ready to <a href='https://wordpress.org/plugins/developers/add/'>resubmit it</a> and <strong>reply to this email</strong> so we know you want to continue. 71 72 We understand that sometimes emails get lost or mistakenly filed as spam, and it's entirely possible that you never received or seen our previous emails. If you can't find it, let us know and we'll send it to you again. 69 73 70 74 <strong>Why this happens</strong> 71 75 72 In order to keep the plugin queue manageable, we reject plugins that are not complete after 3 months (90 days). Even with this policy, we have on average 500 plugins waiting on developers to complete their review at any point in time. 73 74 All plugins are reviewed within 7 working days of submission, but we understand that emails are sometimes lost or accidentally filed as spam, and it's totally possible you never got our previous emails. Another common cause for this is that you replied from a different email address than you submitted it, causing the email chain to be broken. 75 76 Thankfully, a rejection does not mean we can't go forward. If you want to continue, please just reply and let us know.", 76 In order to keep the plugin queue manageable, we reject plugins that are not making progress after 3 months (90 days). Even with this policy, we have more than 500 plugins waiting for developers to complete their review at any given time. 77 78 Thankfully, a rejection does not mean we can't go forward. If you want to continue, please just update your plugin, submit it and reply to let us know.", 77 79 'wporg-plugins' 78 80 );
Note: See TracChangeset
for help on using the changeset viewer.