| @@ -8,14 +8,18 @@ | ||
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | 10 | namespace Automattic\Jetpack\Modules\Subscriptions; |
| 11 | 11 | |
| 12 | -use Automattic\Jetpack\Status\Host; | |
| 13 | - | |
| 14 | 12 | /** |
| 15 | 13 | * Class Settings |
| 16 | 14 | */ |
| 17 | 15 | class Settings { |
| 16 | + /** | |
| 17 | + * The default reply-to option. | |
| 18 | + * | |
| 19 | + * @var string | |
| 20 | + */ | |
| 21 | + public static $default_reply_to = 'comment'; | |
| 18 | 22 | |
| 19 | 23 | /** |
| 20 | 24 | * Validate the reply-to option. |
| 21 | 25 | * |
| @@ -27,18 +31,6 @@ | ||
| 27 | 31 | if ( in_array( $reply_to, $valid_values, true ) ) { |
| 28 | 32 | return true; |
| 29 | 33 | } |
| 30 | 34 | return false; |
| 31 | - } | |
| 32 | - /** | |
| 33 | - * Get the default reply-to option. | |
| 34 | - * | |
| 35 | - * @return string The default reply-to option. | |
| 36 | - */ | |
| 37 | - public static function get_default_reply_to() { | |
| 38 | - if ( ( new Host() )->is_wpcom_simple() ) { | |
| 39 | - return 'comment'; | |
| 40 | - } | |
| 41 | - | |
| 42 | - return 'no-reply'; | |
| 43 | 35 | } |
| 44 | 36 | } |