-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Form Customizer: Refactor to WP and PHPStan standards, add tests. #84
Form Customizer: Refactor to WP and PHPStan standards, add tests. #84
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All in all looks good. Made a couple of minor suggestions.
includes/forms/form-customizer.php
Outdated
* It manages preview values, fields, and errors for the customizer interface, and handles | ||
* saving ACF data when customizer changes are applied. | ||
* | ||
* @package Advanced Custom Fields |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* @package Advanced Custom Fields | |
* @package wordpress/secure-custom-fields |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed!
includes/forms/form-customizer.php
Outdated
* @param array $new_instance (array) widget settings. | ||
* @param array $old_instance (array) widget settings. | ||
* @param object $widget (object) widget info. | ||
* @return array $instance Widget settings. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This spacing seems off to me.
* @return array $instance Widget settings. | |
* | |
* @return array $instance Widget settings. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed!
includes/forms/form-customizer.php
Outdated
@@ -122,10 +152,10 @@ function save_widget( $instance, $new_instance, $old_instance, $widget ) { | |||
* @date 22/03/2016 | |||
* @since ACF 5.3.2 | |||
* | |||
* @param $customizer (object) | |||
* @return $value (mixed) | |||
* @param Object $customizer WordPress object. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* @param Object $customizer WordPress object. | |
* @param WP_Customize_Manager $customizer Customizer object. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed!
includes/forms/form-customizer.php
Outdated
@@ -181,10 +210,10 @@ function settings( $customizer ) { | |||
* @date 22/03/2016 | |||
* @since ACF 5.3.2 | |||
* | |||
* @param $customizer (object) | |||
* @return n/a | |||
* @param Object $customizer WordPress object. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* @param Object $customizer WordPress object. | |
* @param WP_Customize_Manager $customizer Customizer object. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed!
efcc8ae
to
843f80e
Compare
This PR works on
form-customizer.php
file. This one seems to be somewhat legacy, but tests are passing both with the old and the refactor code.The class name change should not have side effects, as is only called in this file. Still may be "risky".
Anyway, feel free to leave feedback. I hope I didn't miss anything.