Issue #3371301: Retrieve field type category information in \Drupal\Core\Field\FieldTypePluginManager::getGroupedDefinitions
1 unresolved thread
Merge request reports
Activity
- Resolved by Lauri Timmanee
- Resolved by Lauri Timmanee
- Resolved by Lauri Timmanee
added 28 commits
-
1e6904f8...57a9309a - 19 commits from branch
project:11.x
- 99401d64 - patch
- a24a969d - reroll
- 043ec59c - Minor clean-up
- 708ca761 - Improve test coverage
- 20ce7495 - Revert breaking change
- c34879c1 - Apply 1 suggestion(s) to 1 file(s)
- dc7764c9 - Apply 1 suggestion(s) to 1 file(s)
- d1e64e13 - Apply 1 suggestion(s) to 1 file(s)
- a5828638 - Remove extra space
Toggle commit list-
1e6904f8...57a9309a - 19 commits from branch
added 93 commits
-
a5828638...a5cd2d7a - 84 commits from branch
project:11.x
- 4b43507e - patch
- 75dc0ba0 - reroll
- 62464b72 - Minor clean-up
- 2d030af6 - Improve test coverage
- 337c058c - Revert breaking change
- a94599b8 - Apply 1 suggestion(s) to 1 file(s)
- e1177b3d - Apply 1 suggestion(s) to 1 file(s)
- 42a8a385 - Apply 1 suggestion(s) to 1 file(s)
- ae5f8189 - Remove extra space
Toggle commit list-
a5828638...a5cd2d7a - 84 commits from branch
139 ], 140 ]); 141 142 $this->fieldTypeCategoryManager->getDefinitions()->willReturn([ 143 'general' => [ 144 'label' => 'General', 145 'id' => 'general', 146 ], 147 ]); 148 149 $zend_assertions_default = ini_get('zend.assertions'); 150 $assert_active_default = assert_options(ASSERT_ACTIVE); 151 152 // Test behavior when assertions are not enabled. 153 ini_set('zend.assertions', 0); 154 assert_options(ASSERT_ACTIVE, 0); - Comment on lines +153 to +154
assert_options() is deprecated in PHP 8.3, I don't know how (or indeed whether) we should test assertions any more.
Please register or sign in to reply