Skip to content

Kirby 3.5.7.1

File::create()

Creates a new file on disk and returns the File object. The store is used to handle file writing, so it can be replaced by any other way of generating files.

File::create(array $props): Kirby\Cms\File

Parameters

Name Type Default
$props * array

Return type

Kirby\Cms\File

Exceptions

Parent class

Kirby\Cms\File

$props parameter

Name Type Description
blueprint array Sets the Blueprint object
content array Sets the Content object
filename * string Sets the filename
parent Kirby\Cms\Model Sets the parent model object;
this property is required for File::create() and
will be generally required starting with Kirby 3.7.0
root string Always set the root to null, to invoke
auto root detection
source * string source thingy
template string
translations array Create the translations collection from an array
url string Sets the url

Example

$file = File::create([
  'source'     => kirby()->root('assets').'/images/some-image.jpg',
  'parent'     => page('photography')->children()->listed()->first(),
  'filename'   => 'new-image.jpg',
  'template' => 'cover',
  'content'   => [
    'caption'   => 'A nice view from above',
  ]
]);