$site->save()
Low-level method to save the model with the given data. Consider using ::update()
instead.
$site->save(array|null $data = null, string|null $languageCode = null, bool $overwrite = false): Kirby\Cms\Site
Parameters
Name | Type | Default |
---|---|---|
$data | array ornull |
null
|
$languageCode | string ornull |
null
|
$overwrite | bool |
false
|
Return type
This method does not modify the existing $site
object but returns a new object with the changes applied. Learn more →
Parent class
Kirby\Cms\Site
inherited from Kirby\Cms\ModelWithContent
Examples
$newSite = $site->save(
[
'text' => 'Here is some text',
'info' => 'Some info text',
]
);