forked from silverstripe/silverstripe-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Merge from original repo #1
Closed
Closed
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
…class BUG Remove old boostrap 3 CSS class
…al-cache-docs DOCS: Example of partial cache expiry setting.
Co-authored-by: Steve Boyd <[email protected]>
This provides a mechanism for adjusting the behaviour of these relations when building more complex data models. For example the following example has a status field incorporates a Status field into the relationship: ```php function MyRelation() { $rel = $this->getManyManyComponents(‘MyRelation’); $rel = $rel->filter(‘Status’, ‘Active’); $rel->addCallbacks()->add(function ($relation, $item, $extra) { $item->Status = ‘Active’; $item->write(); }); } ``` Introduces a new library dependency: http://github.com/sminnee/callbacklist
NEW: Add/remove callbacks for relation lists
Updated 00_Unit_Testing.md (#9699)
- Remove duplicate key in YML file - Remove deprecated yaml dump indentation set (the constructor arg works in both ^3 and ^4) Fixes #9274
The other dependencies that are required are already included in require-dev.
Add namespacing to YAML example
* #9706: Updated doc for case-sensitive filter * #9706: Updated doc for case-sensitive filter Co-authored-by: Dylan Grech <[email protected]>
$hadNamespace was ambiguously named, so the original PHP 8 support update marked it true when it was strictly meant to indicate that a namespace separator token had been encountered, resulting in bungled parsing of complex class specs like Class(["arg" => true]).
…-namespace FIX Fix namespace parsing under PHP 8, tweak readability of parser
Symfony 4 support
…inAttempt-getByEmail isLockedOut() in Member.php call LoginAttempt::getByEmail but it passes to it the unique_identifier_field instead $this->Email
Update spaces in syntax, single quotes, early returns where possible
…caching-aggregates-gotcha DOC Document partial template caching aggregates recommendation
DOCS: Document removal of exclude directive
…tscode-attributes BUG Tweak shortcode parser so it properly parse empty attributes
* Fix: Allow Email to re-render when data changes * Add invalidateBody function * Make the linter happy
Updating docs page to reflect that CORS allowed-origins require the protocol on the front in order to function correctly.
DOC Update 02_cors.md
Was missed from PR b02a6fa
remove unused class import Convert
DOC Update 04_Rendering_Templates.md
… disabled (#9895) * BUG Make sure remember me tokens are not invalidated when logging out without the logout_across_devices flag * Remove unneeded comment
adding `use SilverStripe\Security\Member;` to make sure that linting works.
adding use SilverStripe\Security\Member; to make sure linting works
…e-validator DOC Clarify return value for CompositeValidator::getValidatorsByType()
PATCH: fix param in docblock ... add \ to FormField::__construct
ENH Reduce default token period from 90 to 30 days
michalkleiner
pushed a commit
that referenced
this pull request
May 10, 2021
Update 01_File_Management.md
michalkleiner
pushed a commit
that referenced
this pull request
Dec 13, 2021
fix: don't use int width for mysql > 8.0.17 silverstripe#9453
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.
No description provided.