Deprecated
Core
Kirby\Cms\Model
in favor ofKirby\Cms\ModelWithContent
Kirby\Email\Email::clone()
andKirby\Email\Body::clone()
- Use
Page::isAccessible()
instead ofPage::isReadable()
query
should not be used anymore for custom API endpoints, it will be used for the Kql plugin/core implementation- Internal
$model->contentFile()
,$model->contentFiles()
,$model->contentFileDirectory()
,$model->contentFileExtension()
and$model->contentFileName()
methods have been deprecated and will be removed in v5.
Panel
this.$events
: Usethis.$panel.events
instead.this.$panel.events.$on
: Usethis.$panel.events.on
insteadthis.$panel.events.$off
: Usethis.$panel.events.off
insteadthis.$panel.events.$emit
: Usethis.$panel.events.emit
insteadthis.$store.dispatch("isLoading")
: Usethis.$panel.isLoading
insteadthis.$translation
: Usethis.$panel.translation
insteadthis.$store.dispatch("dialog")
is deprecated. Usethis.$panel.dialog.open
andthis.$panel.dialog.close
insteadthis.$store.dispatch("drag", drag)
has been deprecated. Usethis.$panel.drag = drag
instead