Function __global->ce_sync_file_move
Definitions
code_editor.php
- Provides a hook for file synchronisation between mirrored servers.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $old | PATH | No | No | required parameter | N/A | N/A | File/directory name to move from (may be full or relative path) |
| $new | PATH | No | No | required parameter | N/A | N/A | File/directory name to move to (may be full or relative path) |
Preview
Code (PHP)
/**
* Provides a hook for file synchronisation between mirrored servers.
*
* @param PATH $old File/directory name to move from (may be full or relative path)
* @param PATH $new File/directory name to move to (may be full or relative path)
*/
function ce_sync_file_move(string $old, string $new)
* Provides a hook for file synchronisation between mirrored servers.
*
* @param PATH $old File/directory name to move from (may be full or relative path)
* @param PATH $new File/directory name to move to (may be full or relative path)
*/
function ce_sync_file_move(string $old, string $new)

