@@ -6,24 +6,24 @@ |
||
| 6 | 6 | |
| 7 | 7 | class ValidationStringsDefaults extends Defaults |
| 8 | 8 | { |
| 9 | - /** |
|
| 10 | - * @return array |
|
| 11 | - */ |
|
| 12 | - protected function defaults() |
|
| 13 | - { |
|
| 14 | - return [ |
|
| 15 | - 'accepted' => __('This field must be accepted.', 'site-reviews'), |
|
| 16 | - 'between' => __('This field value must be between %s and %s.', 'site-reviews'), |
|
| 17 | - 'betweenlength' => __('This field must have between %s and %s characters.', 'site-reviews'), |
|
| 18 | - 'email' => __('This field requires a valid e-mail address.', 'site-reviews'), |
|
| 19 | - 'errors' => __('Please fix the submission errors.', 'site-reviews'), |
|
| 20 | - 'max' => __('Maximum value for this field is %s.', 'site-reviews'), |
|
| 21 | - 'maxlength' => __('This field allows a maximum of %s characters.', 'site-reviews'), |
|
| 22 | - 'min' => __('Minimum value for this field is %s.', 'site-reviews'), |
|
| 23 | - 'minlength' => __('This field requires a minimum of %s characters.', 'site-reviews'), |
|
| 24 | - 'number' => __('This field requires a number.', 'site-reviews'), |
|
| 25 | - 'required' => __('This field is required.', 'site-reviews'), |
|
| 26 | - 'unsupported' => __('The review could not be submitted (unsupported browser).', 'site-reviews'), |
|
| 27 | - ]; |
|
| 28 | - } |
|
| 9 | + /** |
|
| 10 | + * @return array |
|
| 11 | + */ |
|
| 12 | + protected function defaults() |
|
| 13 | + { |
|
| 14 | + return [ |
|
| 15 | + 'accepted' => __('This field must be accepted.', 'site-reviews'), |
|
| 16 | + 'between' => __('This field value must be between %s and %s.', 'site-reviews'), |
|
| 17 | + 'betweenlength' => __('This field must have between %s and %s characters.', 'site-reviews'), |
|
| 18 | + 'email' => __('This field requires a valid e-mail address.', 'site-reviews'), |
|
| 19 | + 'errors' => __('Please fix the submission errors.', 'site-reviews'), |
|
| 20 | + 'max' => __('Maximum value for this field is %s.', 'site-reviews'), |
|
| 21 | + 'maxlength' => __('This field allows a maximum of %s characters.', 'site-reviews'), |
|
| 22 | + 'min' => __('Minimum value for this field is %s.', 'site-reviews'), |
|
| 23 | + 'minlength' => __('This field requires a minimum of %s characters.', 'site-reviews'), |
|
| 24 | + 'number' => __('This field requires a number.', 'site-reviews'), |
|
| 25 | + 'required' => __('This field is required.', 'site-reviews'), |
|
| 26 | + 'unsupported' => __('The review could not be submitted (unsupported browser).', 'site-reviews'), |
|
| 27 | + ]; |
|
| 28 | + } |
|
| 29 | 29 | } |
@@ -6,26 +6,26 @@ |
||
| 6 | 6 | |
| 7 | 7 | class EmailDefaults extends Defaults |
| 8 | 8 | { |
| 9 | - /** |
|
| 10 | - * @return array |
|
| 11 | - */ |
|
| 12 | - protected function defaults() |
|
| 13 | - { |
|
| 14 | - $fromName = wp_specialchars_decode((string) get_option('blogname'), ENT_QUOTES); |
|
| 15 | - $fromEmail = (string) get_option('admin_email'); |
|
| 16 | - return [ |
|
| 17 | - 'after' => '', |
|
| 18 | - 'attachments' => [], |
|
| 19 | - 'bcc' => '', |
|
| 20 | - 'before' => '', |
|
| 21 | - 'cc' => '', |
|
| 22 | - 'from' => $fromName.' <'.$fromEmail.'>', |
|
| 23 | - 'message' => '', |
|
| 24 | - 'reply-to' => '', |
|
| 25 | - 'subject' => '', |
|
| 26 | - 'template' => '', |
|
| 27 | - 'template-tags' => [], |
|
| 28 | - 'to' => '', |
|
| 29 | - ]; |
|
| 30 | - } |
|
| 9 | + /** |
|
| 10 | + * @return array |
|
| 11 | + */ |
|
| 12 | + protected function defaults() |
|
| 13 | + { |
|
| 14 | + $fromName = wp_specialchars_decode((string) get_option('blogname'), ENT_QUOTES); |
|
| 15 | + $fromEmail = (string) get_option('admin_email'); |
|
| 16 | + return [ |
|
| 17 | + 'after' => '', |
|
| 18 | + 'attachments' => [], |
|
| 19 | + 'bcc' => '', |
|
| 20 | + 'before' => '', |
|
| 21 | + 'cc' => '', |
|
| 22 | + 'from' => $fromName.' <'.$fromEmail.'>', |
|
| 23 | + 'message' => '', |
|
| 24 | + 'reply-to' => '', |
|
| 25 | + 'subject' => '', |
|
| 26 | + 'template' => '', |
|
| 27 | + 'template-tags' => [], |
|
| 28 | + 'to' => '', |
|
| 29 | + ]; |
|
| 30 | + } |
|
| 31 | 31 | } |
@@ -6,33 +6,33 @@ |
||
| 6 | 6 | |
| 7 | 7 | class SiteReviewsDefaults extends Defaults |
| 8 | 8 | { |
| 9 | - /** |
|
| 10 | - * @var array |
|
| 11 | - */ |
|
| 12 | - protected $guarded = [ |
|
| 13 | - 'fallback', |
|
| 14 | - 'title', |
|
| 15 | - ]; |
|
| 9 | + /** |
|
| 10 | + * @var array |
|
| 11 | + */ |
|
| 12 | + protected $guarded = [ |
|
| 13 | + 'fallback', |
|
| 14 | + 'title', |
|
| 15 | + ]; |
|
| 16 | 16 | |
| 17 | - /** |
|
| 18 | - * @return array |
|
| 19 | - */ |
|
| 20 | - protected function defaults() |
|
| 21 | - { |
|
| 22 | - return [ |
|
| 23 | - 'assigned_to' => '', |
|
| 24 | - 'category' => '', |
|
| 25 | - 'class' => '', |
|
| 26 | - 'count' => 5, |
|
| 27 | - 'fallback' => '', |
|
| 28 | - 'hide' => [], |
|
| 29 | - 'id' => '', |
|
| 30 | - 'offset' => '', |
|
| 31 | - 'pagination' => false, |
|
| 32 | - 'rating' => 1, |
|
| 33 | - 'schema' => false, |
|
| 34 | - 'title' => '', |
|
| 35 | - 'type' => 'local', |
|
| 36 | - ]; |
|
| 37 | - } |
|
| 17 | + /** |
|
| 18 | + * @return array |
|
| 19 | + */ |
|
| 20 | + protected function defaults() |
|
| 21 | + { |
|
| 22 | + return [ |
|
| 23 | + 'assigned_to' => '', |
|
| 24 | + 'category' => '', |
|
| 25 | + 'class' => '', |
|
| 26 | + 'count' => 5, |
|
| 27 | + 'fallback' => '', |
|
| 28 | + 'hide' => [], |
|
| 29 | + 'id' => '', |
|
| 30 | + 'offset' => '', |
|
| 31 | + 'pagination' => false, |
|
| 32 | + 'rating' => 1, |
|
| 33 | + 'schema' => false, |
|
| 34 | + 'title' => '', |
|
| 35 | + 'type' => 'local', |
|
| 36 | + ]; |
|
| 37 | + } |
|
| 38 | 38 | } |
@@ -7,27 +7,27 @@ |
||
| 7 | 7 | |
| 8 | 8 | class CreateReviewDefaults extends Defaults |
| 9 | 9 | { |
| 10 | - /** |
|
| 11 | - * @return array |
|
| 12 | - */ |
|
| 13 | - protected function defaults() |
|
| 14 | - { |
|
| 15 | - return [ |
|
| 16 | - 'assigned_to' => '', |
|
| 17 | - 'author' => '', |
|
| 18 | - 'avatar' => '', |
|
| 19 | - 'content' => '', |
|
| 20 | - 'custom' => '', |
|
| 21 | - 'date' => current_time('mysql'), |
|
| 22 | - 'email' => '', |
|
| 23 | - 'ip_address' => glsr(Helper::class)->getIpAddress(), |
|
| 24 | - 'pinned' => false, |
|
| 25 | - 'rating' => '', |
|
| 26 | - 'response' => '', |
|
| 27 | - 'review_id' => md5(time().mt_rand()), |
|
| 28 | - 'review_type' => 'local', |
|
| 29 | - 'title' => '', |
|
| 30 | - 'url' => '', |
|
| 31 | - ]; |
|
| 32 | - } |
|
| 10 | + /** |
|
| 11 | + * @return array |
|
| 12 | + */ |
|
| 13 | + protected function defaults() |
|
| 14 | + { |
|
| 15 | + return [ |
|
| 16 | + 'assigned_to' => '', |
|
| 17 | + 'author' => '', |
|
| 18 | + 'avatar' => '', |
|
| 19 | + 'content' => '', |
|
| 20 | + 'custom' => '', |
|
| 21 | + 'date' => current_time('mysql'), |
|
| 22 | + 'email' => '', |
|
| 23 | + 'ip_address' => glsr(Helper::class)->getIpAddress(), |
|
| 24 | + 'pinned' => false, |
|
| 25 | + 'rating' => '', |
|
| 26 | + 'response' => '', |
|
| 27 | + 'review_id' => md5(time().mt_rand()), |
|
| 28 | + 'review_type' => 'local', |
|
| 29 | + 'title' => '', |
|
| 30 | + 'url' => '', |
|
| 31 | + ]; |
|
| 32 | + } |
|
| 33 | 33 | } |
@@ -6,28 +6,28 @@ |
||
| 6 | 6 | |
| 7 | 7 | class SiteReviewsFormDefaults extends Defaults |
| 8 | 8 | { |
| 9 | - /** |
|
| 10 | - * @var array |
|
| 11 | - */ |
|
| 12 | - protected $guarded = [ |
|
| 13 | - 'description', |
|
| 14 | - 'title', |
|
| 15 | - ]; |
|
| 9 | + /** |
|
| 10 | + * @var array |
|
| 11 | + */ |
|
| 12 | + protected $guarded = [ |
|
| 13 | + 'description', |
|
| 14 | + 'title', |
|
| 15 | + ]; |
|
| 16 | 16 | |
| 17 | - /** |
|
| 18 | - * @return array |
|
| 19 | - */ |
|
| 20 | - protected function defaults() |
|
| 21 | - { |
|
| 22 | - return [ |
|
| 23 | - 'assign_to' => '', |
|
| 24 | - 'category' => '', |
|
| 25 | - 'class' => '', |
|
| 26 | - 'description' => '', |
|
| 27 | - 'excluded' => '', |
|
| 28 | - 'hide' => '', |
|
| 29 | - 'id' => '', |
|
| 30 | - 'title' => '', |
|
| 31 | - ]; |
|
| 32 | - } |
|
| 17 | + /** |
|
| 18 | + * @return array |
|
| 19 | + */ |
|
| 20 | + protected function defaults() |
|
| 21 | + { |
|
| 22 | + return [ |
|
| 23 | + 'assign_to' => '', |
|
| 24 | + 'category' => '', |
|
| 25 | + 'class' => '', |
|
| 26 | + 'description' => '', |
|
| 27 | + 'excluded' => '', |
|
| 28 | + 'hide' => '', |
|
| 29 | + 'id' => '', |
|
| 30 | + 'title' => '', |
|
| 31 | + ]; |
|
| 32 | + } |
|
| 33 | 33 | } |
@@ -6,20 +6,20 @@ |
||
| 6 | 6 | |
| 7 | 7 | class StyleFieldsDefaults extends Defaults |
| 8 | 8 | { |
| 9 | - /** |
|
| 10 | - * @return array |
|
| 11 | - */ |
|
| 12 | - protected function defaults() |
|
| 13 | - { |
|
| 14 | - return [ |
|
| 15 | - 'input' => '', |
|
| 16 | - 'input_checkbox' => '', |
|
| 17 | - 'input_radio' => '', |
|
| 18 | - 'label' => '', |
|
| 19 | - 'label_checkbox' => '', |
|
| 20 | - 'label_radio' => '', |
|
| 21 | - 'select' => '', |
|
| 22 | - 'textarea' => '', |
|
| 23 | - ]; |
|
| 24 | - } |
|
| 9 | + /** |
|
| 10 | + * @return array |
|
| 11 | + */ |
|
| 12 | + protected function defaults() |
|
| 13 | + { |
|
| 14 | + return [ |
|
| 15 | + 'input' => '', |
|
| 16 | + 'input_checkbox' => '', |
|
| 17 | + 'input_radio' => '', |
|
| 18 | + 'label' => '', |
|
| 19 | + 'label_checkbox' => '', |
|
| 20 | + 'label_radio' => '', |
|
| 21 | + 'select' => '', |
|
| 22 | + 'textarea' => '', |
|
| 23 | + ]; |
|
| 24 | + } |
|
| 25 | 25 | } |
@@ -7,22 +7,22 @@ |
||
| 7 | 7 | |
| 8 | 8 | class ValidateReviewDefaults extends Defaults |
| 9 | 9 | { |
| 10 | - /** |
|
| 11 | - * @return array |
|
| 12 | - */ |
|
| 13 | - protected function defaults() |
|
| 14 | - { |
|
| 15 | - return [ |
|
| 16 | - 'assign_to' => '', |
|
| 17 | - 'category' => '', |
|
| 18 | - 'content' => '', |
|
| 19 | - 'email' => '', |
|
| 20 | - 'form_id' => '', |
|
| 21 | - 'ip_address' => glsr(Helper::class)->getIpAddress(), // required for Akismet and Blacklist validation |
|
| 22 | - 'name' => '', |
|
| 23 | - 'rating' => '0', |
|
| 24 | - 'terms' => '', |
|
| 25 | - 'title' => '', |
|
| 26 | - ]; |
|
| 27 | - } |
|
| 10 | + /** |
|
| 11 | + * @return array |
|
| 12 | + */ |
|
| 13 | + protected function defaults() |
|
| 14 | + { |
|
| 15 | + return [ |
|
| 16 | + 'assign_to' => '', |
|
| 17 | + 'category' => '', |
|
| 18 | + 'content' => '', |
|
| 19 | + 'email' => '', |
|
| 20 | + 'form_id' => '', |
|
| 21 | + 'ip_address' => glsr(Helper::class)->getIpAddress(), // required for Akismet and Blacklist validation |
|
| 22 | + 'name' => '', |
|
| 23 | + 'rating' => '0', |
|
| 24 | + 'terms' => '', |
|
| 25 | + 'title' => '', |
|
| 26 | + ]; |
|
| 27 | + } |
|
| 28 | 28 | } |
@@ -6,22 +6,22 @@ |
||
| 6 | 6 | |
| 7 | 7 | class StyleValidationDefaults extends Defaults |
| 8 | 8 | { |
| 9 | - /** |
|
| 10 | - * @return array |
|
| 11 | - */ |
|
| 12 | - protected function defaults() |
|
| 13 | - { |
|
| 14 | - return [ |
|
| 15 | - 'error_tag' => 'div', |
|
| 16 | - 'error_tag_class' => 'glsr-field-error', |
|
| 17 | - 'field_class' => 'glsr-field', |
|
| 18 | - 'field_error_class' => 'glsr-has-error', |
|
| 19 | - 'input_error_class' => 'glsr-is-invalid', |
|
| 20 | - 'message_error_class' => 'glsr-has-errors', |
|
| 21 | - 'message_initial_class' => 'glsr-is-visible', |
|
| 22 | - 'message_success_class' => 'glsr-has-success', |
|
| 23 | - 'message_tag' => 'div', |
|
| 24 | - 'message_tag_class' => 'glsr-form-message', |
|
| 25 | - ]; |
|
| 26 | - } |
|
| 9 | + /** |
|
| 10 | + * @return array |
|
| 11 | + */ |
|
| 12 | + protected function defaults() |
|
| 13 | + { |
|
| 14 | + return [ |
|
| 15 | + 'error_tag' => 'div', |
|
| 16 | + 'error_tag_class' => 'glsr-field-error', |
|
| 17 | + 'field_class' => 'glsr-field', |
|
| 18 | + 'field_error_class' => 'glsr-has-error', |
|
| 19 | + 'input_error_class' => 'glsr-is-invalid', |
|
| 20 | + 'message_error_class' => 'glsr-has-errors', |
|
| 21 | + 'message_initial_class' => 'glsr-is-visible', |
|
| 22 | + 'message_success_class' => 'glsr-has-success', |
|
| 23 | + 'message_tag' => 'div', |
|
| 24 | + 'message_tag_class' => 'glsr-form-message', |
|
| 25 | + ]; |
|
| 26 | + } |
|
| 27 | 27 | } |
@@ -6,19 +6,19 @@ |
||
| 6 | 6 | |
| 7 | 7 | class SlackDefaults extends Defaults |
| 8 | 8 | { |
| 9 | - /** |
|
| 10 | - * @return array |
|
| 11 | - */ |
|
| 12 | - protected function defaults() |
|
| 13 | - { |
|
| 14 | - return [ |
|
| 15 | - 'button_text' => __('View Review', 'site-reviews'), |
|
| 16 | - 'button_url' => '', |
|
| 17 | - 'color' => '#665068', |
|
| 18 | - 'fallback' => '', |
|
| 19 | - 'icon_url' => glsr()->url('assets/images/icon.png'), |
|
| 20 | - 'pretext' => '', |
|
| 21 | - 'username' => glsr()->name, |
|
| 22 | - ]; |
|
| 23 | - } |
|
| 9 | + /** |
|
| 10 | + * @return array |
|
| 11 | + */ |
|
| 12 | + protected function defaults() |
|
| 13 | + { |
|
| 14 | + return [ |
|
| 15 | + 'button_text' => __('View Review', 'site-reviews'), |
|
| 16 | + 'button_url' => '', |
|
| 17 | + 'color' => '#665068', |
|
| 18 | + 'fallback' => '', |
|
| 19 | + 'icon_url' => glsr()->url('assets/images/icon.png'), |
|
| 20 | + 'pretext' => '', |
|
| 21 | + 'username' => glsr()->name, |
|
| 22 | + ]; |
|
| 23 | + } |
|
| 24 | 24 | } |