This repository has been archived by the owner on Aug 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 132
Refactor \Drupal\og_ui\BundleFormAlter #734
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
… BundleEntityFormBase.
After spending some quality time with the class I am realizing it would better be converted into a service, since it depends on a bunch of other services such as the |
This is ready but blocked by #732. Assigning to me to keep track. |
Now that #732 has been merged, this is unblocked and ready for review. Unassigning. |
@bboro if you can re-roll as-well please |
bboro
approved these changes
Jul 15, 2024
@bboro Thanks. I see Travis is failing - let's fix that first? |
@amitaibu did phpcs ever work on this project? |
Yes - for example this PR |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The
\Drupal\og_ui\BundleFormAlter
class is in need of refactoring and bug fixing.In #733 new scalar type hints are being introduced, and the testing of this has uncovered that the
BundleFormAlter
class is calling intoOg::isGroup()
with the$bundle_id
set toNULL
, while this method is only accepting strings.Apart from this bug the class is also showing its age and is not up to date with current best practices. Let's:
::prepare()
method then acts as a second constructor which populates further properties. Internally then the form and form state are still passed on between methods. It looks like this can be simplified a lot, by just passing on the form and form state and using some basic helper methods. It looks like the whole class can operate without keeping any state, with purely static methods.