PHP Class Neos\Flow\ResourceManagement\Target\FileSystemSymlinkTarget

Inheritance: extends FileSystemTarget
Datei anzeigen Open project: neos/flow-development-collection

Protected Properties

Property Type Description
$relativeSymlinks boolean

Public Methods

Method Description
publishCollection ( Neos\Flow\ResourceManagement\CollectionInterface $collection, callable $callback = null ) : void Publishes the whole collection to this target

Protected Methods

Method Description
publishDirectory ( string $sourcePath, string $relativeTargetPathAndFilename ) : void Publishes the specified directory to this target, with the given relative path.
publishFile ( resource $sourceStream, string $relativeTargetPathAndFilename ) Publishes the given source stream to this target, with the given relative path.
setOption ( string $key, mixed $value ) : boolean Set an option value and return if it was set.

Method Details

publishCollection() public method

Publishes the whole collection to this target
public publishCollection ( Neos\Flow\ResourceManagement\CollectionInterface $collection, callable $callback = null ) : void
$collection Neos\Flow\ResourceManagement\CollectionInterface The collection to publish
$callback callable Function called after each resource publishing
return void

publishDirectory() protected method

Publishes the specified directory to this target, with the given relative path.
protected publishDirectory ( string $sourcePath, string $relativeTargetPathAndFilename ) : void
$sourcePath string Absolute path to the source directory
$relativeTargetPathAndFilename string relative path and filename in the target directory
return void

publishFile() protected method

Publishes the given source stream to this target, with the given relative path.
protected publishFile ( resource $sourceStream, string $relativeTargetPathAndFilename )
$sourceStream resource Stream of the source to publish
$relativeTargetPathAndFilename string relative path and filename in the target directory

setOption() protected method

Set an option value and return if it was set.
protected setOption ( string $key, mixed $value ) : boolean
$key string
$value mixed
return boolean

Property Details