-
Notifications
You must be signed in to change notification settings - Fork 824
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
API Move various classes to more appropriate namespaces #11370
Merged
emteknetnz
merged 1 commit into
silverstripe:6
from
creative-commoners:pulls/6/renaming-classes
Sep 23, 2024
Merged
API Move various classes to more appropriate namespaces #11370
emteknetnz
merged 1 commit into
silverstripe:6
from
creative-commoners:pulls/6/renaming-classes
Sep 23, 2024
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
GuySartorelli
force-pushed
the
pulls/6/renaming-classes
branch
from
September 12, 2024 00:08
37efc3a
to
42ba92b
Compare
This was referenced Sep 12, 2024
This was referenced Sep 12, 2024
GuySartorelli
force-pushed
the
pulls/6/renaming-classes
branch
from
September 12, 2024 01:13
42ba92b
to
997a28f
Compare
This was referenced Sep 12, 2024
GuySartorelli
force-pushed
the
pulls/6/renaming-classes
branch
4 times, most recently
from
September 17, 2024 00:06
b228945
to
bd0068b
Compare
This was referenced Sep 17, 2024
This was referenced Sep 17, 2024
Merged
GuySartorelli
force-pushed
the
pulls/6/renaming-classes
branch
3 times, most recently
from
September 18, 2024 07:21
603e9f1
to
d568740
Compare
Also rename ViewableData to ModelData ahead of the template layer lift-and-shift
GuySartorelli
force-pushed
the
pulls/6/renaming-classes
branch
from
September 18, 2024 09:44
d568740
to
d639e83
Compare
emteknetnz
approved these changes
Sep 23, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
There are a bunch of classes in the
ORM
namespace that simply don't belong there, since they have nothing to do with storing or fetching data in the database.In preparation for moving the template layer, I was already renaming
SilverStripe\View\ViewableData
toSilverStripe\Model\ModelData
. It seems like a good time to clean up these other (mostly model-related) classes as well.SilverStripe\ORM\ArrayLib
SilverStripe\Core\ArrayLib
SilverStripe\ORM\ValidationException
SilverStripe\Core\Validation\ValidationException
SilverStripe\ORM\ValidationResult
SilverStripe\Core\Validation\ValidationResult
SilverStripe\View\ArrayData
SilverStripe\Model\ArrayData
SilverStripe\ORM\ArrayList
SilverStripe\Model\List\ArrayList
SilverStripe\ORM\Filterable
SilverStripe\Model\List\Filterable
SilverStripe\ORM\GroupedList
SilverStripe\Model\List\GroupedList
SilverStripe\ORM\Limitable
SilverStripe\Model\List\Limitable
SilverStripe\ORM\ListDecorator
SilverStripe\Model\List\ListDecorator
SilverStripe\ORM\Map
SilverStripe\Model\List\Map
SilverStripe\ORM\PaginatedList
SilverStripe\Model\List\PaginatedList
SilverStripe\ORM\SS_List
SilverStripe\Model\List\SS_List
SilverStripe\ORM\Sortable
SilverStripe\Model\List\Sortable
SilverStripe\View\ViewableData
SilverStripe\Model\ModelData
SilverStripe\View\ViewableData_Customised
SilverStripe\Model\ModelDataCustomised
SilverStripe\View\ViewableData_Debugger
SilverStripe\Model\ModelDataDebugger
Related test classes were also updated but aren't listed in the table.
Issue