PHP Class Neos\Flow\ResourceManagement\Target\FileSystemSymlinkTarget

Inheritance: extends FileSystemTarget
Afficher le fichier Open project: neos/flow-development-collection

Protected Properties

Свойство Type Description
$relativeSymlinks boolean

Méthodes publiques

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

Méthodes protégées

Méthode 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 méthode

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
Résultat void

publishDirectory() protected méthode

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
Résultat void

publishFile() protected méthode

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 méthode

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

Property Details