-
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
TMS-968: Add recurring event fields to manual events #20
Conversation
$args = [ | ||
'post_type' => PostType\ManualEvent::SLUG, | ||
'posts_per_page' => 200, // phpcs:ignore | ||
's' => $params['q'] ?? '', |
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.
's' => $params['q'] ?? '', | |
's' => ! empty( $params['q'] ) ? $params['q'] : '', |
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.
❓
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.
'??' operaattori tekee saman, eli käyttää ensimmäistä parametriä jos se on olemassa & ei ole null
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.
🆗
Severa-ID: 2147
Severa-kuvaus: TMS-968 Manuaaliset tapahtumat: tapahtuman toistuvuus
Task: https://hiondigital.atlassian.net/browse/TMS-968
Description
Types of changes