-
Notifications
You must be signed in to change notification settings - Fork 15
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
ENH Hide the open in new window checkbox from phone and email links #187
ENH Hide the open in new window checkbox from phone and email links #187
Conversation
d417f40
to
8cc5717
Compare
? _t(__CLASS__ . '.UPDATE_LINK', 'Update link') | ||
: _t(__CLASS__ . '.CREATE_LINK', 'Create link'); | ||
? _t(__CLASS__ . '.UPDATE_LINK', 'Update link') | ||
: _t(__CLASS__ . '.CREATE_LINK', 'Create link'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is unrelated refactoring
8cc5717
to
09d94a1
Compare
'file' => FileLink::class, | ||
'email' => EmailLink::class, | ||
'phone' => PhoneLink::class, | ||
'testphone' => TestPhoneLink::class, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is unrelated refactoring to make it easier to run unit tests locally when you have a custom link type in your project
FileLink::class, | ||
EmailLink::class, | ||
PhoneLink::class, | ||
TestPhoneLink::class, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is unrelated refactoring
FileLink::class, | ||
EmailLink::class, | ||
PhoneLink::class, | ||
TestPhoneLink::class, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is unrelated refactoring
$linkField = LinkField::create('LinkField'); | ||
$linkField->setAllowedTypes($enabled); | ||
$json = json_decode($linkField->getTypesProps(), true); | ||
$json = $this->removeCustomLinkTypes($json); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is unrelated refactoring to make it easier to run unit tests locally when you have a custom link type in your project
09d94a1
to
7ef4494
Compare
7ef4494
to
0c01fcf
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Issue #23