Niklas Forsdahl
898ef9ba31
Removed custom interface for SessionGridFieldStateManager, the extra methods
...
will be incorporated into GridFieldStateManagerInterface in the future.
2024-06-20 15:12:56 +03:00
Niklas Forsdahl
e9cd597a22
Fixed SessionGridFieldStateManager unit test to work regardless of
...
current gridfield state manager configuration.
2024-06-20 15:12:56 +03:00
Niklas Forsdahl
d448708fb3
Added Unit Tests for SessionGridFieldStateManager
2024-06-20 15:12:56 +03:00
Niklas Forsdahl
4714a83333
NEW Initial SessionGridFieldStateManager implementation, for managing
...
GridField states in session.
2024-06-20 15:12:54 +03:00
Guy Sartorelli
dcace43183
Merge branch '5.2' into 5
...
# Conflicts:
# src/Core/ClassInfo.php
# src/ORM/FieldType/DBForeignKey.php
2024-06-20 14:51:48 +12:00
Guy Sartorelli
23c1a0f849
MNT Run module-standardiser ( #11283 )
2024-06-20 12:16:30 +12:00
Guy Sartorelli
27873939f4
Merge pull request #11270 from creative-commoners/pulls/5.2/remove-self
...
ENH Use class name instead of self
2024-06-18 14:40:44 +12:00
Steve Boyd
620c1b0469
ENH Use class name instead of self
2024-06-18 09:37:39 +12:00
github-actions
b7e2a6ecf8
Merge branch '5.2' into 5
2024-06-17 01:15:58 +00:00
Guy Sartorelli
1e0b9056f5
FIX Don't load data up front for lazy-loaded searchable dropdown ( #11278 )
2024-06-17 11:59:59 +12:00
Guy Sartorelli
049e546247
API Deprecate references to installation tool ( #11275 )
2024-06-12 15:47:12 +12:00
Guy Sartorelli
be0eab2bae
NEW Allow DataObject classes to define scaffolded relation formfields ( #11269 )
2024-06-07 17:06:01 +12:00
Guy Sartorelli
64ac096b46
Merge pull request #11176 from wilr/fix/reset-password-lockout
...
FIX mark a successful login attempt when completing a password reset
2024-06-06 11:56:45 +12:00
Will Rossiter
9361382be3
FIX mark a successful login attempt when completing a password reset ( #10099 )
2024-06-06 11:43:21 +12:00
github-actions
a6ab217dcd
Merge branch '5.2' into 5
2024-06-04 23:33:36 +00:00
Mason Dechaineux
9546450cf2
improve DataList and ArrayList docblock comments for PHPStorm ( #11263 )
...
addresses #11247
2024-05-31 10:59:04 +12:00
Maxime Rainville
e35f12c66f
ENH Update AttributesHTML to output alt attribute even if it's empty ( #11217 )
2024-05-29 09:30:04 +12:00
github-actions
8886a3a93d
Merge branch '5.2' into 5
2024-05-22 22:41:40 +00:00
Sabina Talipova
f0aaba5504
FIX HTMLEditorField is not able to show html or xml code examples ( #11243 )
2024-05-22 09:39:36 +12:00
Guy Sartorelli
6c65a0e452
Merge pull request #11248 from creative-commoners/pulls/5/module-standardiser-1715911070
...
MNT Run module-standardiser
2024-05-21 16:23:14 +12:00
Sabina Talipova
76bdc59cf5
Merge pull request #11251 from creative-commoners/pulls/5/current-scope-loop
...
FIX Loop over current scope when no argument passed to loop block
2024-05-20 12:54:54 +12:00
Hernold Koch
470293a6d2
FIX 'which' check in 'sake' now works for aliases ( #11232 )
2024-05-20 11:04:44 +12:00
Guy Sartorelli
699a8bf2da
FIX Loop over current scope when no argument passed to loop block
2024-05-17 15:17:02 +12:00
Steve Boyd
ffb26afb2e
MNT Run module-standardiser
2024-05-17 15:08:07 +12:00
Guy Sartorelli
56625081b4
ENH Use allowed view button for readonly GridField ( #11228 )
2024-05-17 10:28:47 +12:00
Guy Sartorelli
cd77301de1
Merge pull request #11236 from creative-commoners/pulls/5/deprecate-non-array
...
API Deprecate passing non-arrays to FieldList methods
2024-05-17 09:52:29 +12:00
Guy Sartorelli
7625b29937
Merge pull request #11239 from creative-commoners/pulls/5/module-standardiser-1715811311
...
MNT Run module-standardiser
2024-05-17 09:47:13 +12:00
Steve Boyd
264dfac902
MNT Run module-standardiser
2024-05-16 14:43:48 +12:00
github-actions
f60e1bc236
Merge branch '5.2' into 5
2024-05-16 01:13:12 +00:00
Guy Sartorelli
8afe1adc57
Merge pull request #11238 from creative-commoners/pulls/5/viewable-scalar
...
ENH Rendering scalars in ArrayList in templates
2024-05-15 17:33:13 +12:00
Steve Boyd
12a741feee
ENH Rendering scalars in ArrayList in templates
2024-05-15 16:31:39 +12:00
Steve Boyd
0ba85bc1d0
API Deprecate passing non-arrays to FieldList methods
2024-05-14 12:43:59 +12:00
Guy Sartorelli
50a0018363
FIX many_many through should allow subclasses ( #11230 )
...
```php
class HomePage extends Page
{
private static $many_many = [
'HeroImages' => [
'through' => PageImageLink::class,
'from' => 'Page',
'to' => 'Image',
]
];
}
```
```php
class PageImageLink extends DataObject
{
private static $has_one = [
'Page' => SiteTree::class,
'Image' => Image::class,
];
}
This fails because the linking object's relation class doesn't exactly match the owner. Sharing the linking objects across various entries in the ancestry should be a supported use case.
Co-authored-by: Aaron Carlino <unclecheese@leftandmain.com>
2024-05-13 14:15:37 +12:00
github-actions
4429a4999d
Merge branch '5.2' into 5
2024-05-11 14:24:47 +00:00
Dominik Beerbohm
0f6d210602
FIX Correctly eagerload polymorphic has_one relations ( #11204 )
2024-05-08 11:12:51 +12:00
Guy Sartorelli
241d03b352
TLN Update translations ( #11224 )
2024-05-08 09:31:04 +12:00
Guy Sartorelli
0c8fcfb54c
Merge pull request #11213 from creative-commoners/pulls/5/required-has-one
...
FIX Handle getting HasOneRelationFieldInterface passed as an array
2024-05-07 13:01:59 +12:00
Guy Sartorelli
3449d8bf21
FIX Revert "ENH Add Nice to DBField" ( #11222 )
...
This reverts commit b167f470d7
.
2024-05-07 11:45:48 +12:00
Guy Sartorelli
e468b719cf
TLN Update translations ( #11221 )
2024-05-06 18:13:56 +12:00
Guy Sartorelli
a198c91628
FIX Don't throw exception for empty eagerloaded relation ( #11220 )
2024-05-06 18:06:54 +12:00
Guy Sartorelli
a92baeaf6f
FIX Allow double dots in path when not attempting directory traversal ( #11219 )
2024-05-06 13:15:26 +12:00
github-actions
9fc9d18c7a
Merge branch '5.2' into 5
2024-05-04 14:25:17 +00:00
Steve Boyd
b8f0b8ca4f
FIX Handle getting HasOneRelationFieldInterface passed as an array
2024-05-02 12:06:43 +12:00
Thomas Portelange
44f77ecdac
MNT add nullable return types to PHPDocs ( #11192 )
2024-04-29 09:02:59 +12:00
Guy Sartorelli
142a318fa8
ENH Return PJAX responses from gridfield edit forms ( #11206 )
...
undefined
2024-04-26 17:13:27 +12:00
github-actions
19ea32ebfa
Merge branch '5.2' into 5
2024-04-20 14:23:53 +00:00
Steve Boyd
c2199ff88b
Merge pull request #11201 from creative-commoners/pulls/5/fix-wysiwyg-sanitisation
...
Fix wysiwyg sanitisation
2024-04-19 11:02:44 +12:00
Guy Sartorelli
72692f9f10
NEW Make default TinyMCE settings configurable
2024-04-18 15:12:16 +12:00
Guy Sartorelli
2bdc24c86a
ENH Set default valid_elements for new TinyMCE config
2024-04-18 14:38:02 +12:00
Guy Sartorelli
a4adad60e9
FIX Don't skip sanitisation when no valid elements are defined
2024-04-18 14:28:02 +12:00