Constants

 

The APPEND event occurs after File::appendContents() was called.

APPEND : string
API
This event allows you to act after a file was appended. The event listener method receives a Filicious\Event\AppendEvent instance.
api
 

The DELETE event occurs before File::delete() was called.

BEFORE_DELETE : string
API
This event allows you to act before deleting a file. The event listener method receives a Filicious\Event\DeleteEvent instance.
api
 

The COPY event occurs after File::copy() was called.

COPY : string
API
This event allows you to act after copying a file. The event listener method receives a Filicious\Event\CopyEvent instance.
api
 

The CREATE_DIRECTORY event occurs after File::createDirectory() was called.

CREATE_DIRECTORY : string
API
This event allows you to act after a directory was created. The event listener method receives a Filicious\Event\CreateDirectoryEvent instance.
api
 

The CREATE_FILE event occurs after File::createFile() was called.

CREATE_FILE : string
API
This event allows you to act after an empty file was created. The event listener method receives a Filicious\Event\CreateFileEvent instance.
api
 

The DELETE event occurs after File::delete() was called.

DELETE : string
API
This event allows you to act after deleting a file. The event listener method receives a Filicious\Event\DeleteEvent instance.
api
 

The MOVE event occurs after File::move() was called.

MOVE : string
API
This event allows you to act after moving a file. The event listener method receives a Filicious\Event\MoveEvent instance.
api
 

The SET_GROUP event occurs after File::setGroup() was called.

SET_GROUP : string
API
This event allows you to act after changing the group of a file. The event listener method receives a Filicious\Event\SetOwnerEvent instance.
api
 

The SET_MODE event occurs after File::setMode() was called.

SET_MODE : string
API
This event allows you to act after changing the group of a file. The event listener method receives a Filicious\Event\SetModeEvent instance.
api
 

The SET_OWNER event occurs after File::setOwner() was called.

SET_OWNER : string
API
This event allows you to act after changing the owner of a file. The event listener method receives a Filicious\Event\SetOwnerEvent instance.
api
 

The TOUCH event occurs after File::touch() was called.

TOUCH : string
API
This event allows you to act after touching a file. The event listener method receives a Filicious\Event\TouchEvent instance.
api
 

The TRUNCATE event occurs after File::truncate() was called.

TRUNCATE : string
API
This event allows you to act after a file was truncated. The event listener method receives a Filicious\Event\TruncateEvent instance.
api
 

The WRITE event occurs after File::setContents() was called.

WRITE : string
API
This event allows you to act after a file was overwritten. The event listener method receives a Filicious\Event\WriteEvent instance.
api