Function Resource_fs_base->_resource_save_extend_pre
Definitions
sources/resource_fs_base_class.php
- Modify standard properties as may be needed by implications of extra properties.
- Visibility: protected
- Is abstract?: No
- Is static?: No
- Is final?: No
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| &$properties | array | Yes | No | required parameter | N/A | N/A | Details of properties (returned by reference) |
| $resource_type | ID_TEXT | No | No | required parameter | N/A | N/A | The resource type |
| $filename | ID_TEXT | No | No | required parameter | N/A | N/A | Filename |
| $label | LONG_TEXT | No | No | required parameter | N/A | N/A | Resource label |
Preview
Code (PHP)
/**
* Modify standard properties as may be needed by implications of extra properties.
*
* @param array $properties Details of properties (returned by reference)
* @param ID_TEXT $resource_type The resource type
* @param ID_TEXT $filename Filename
* @param LONG_TEXT $label Resource label
*/
protected function _resource_save_extend_pre(array &$properties, string $resource_type, string $filename, string $label)
* Modify standard properties as may be needed by implications of extra properties.
*
* @param array $properties Details of properties (returned by reference)
* @param ID_TEXT $resource_type The resource type
* @param ID_TEXT $filename Filename
* @param LONG_TEXT $label Resource label
*/
protected function _resource_save_extend_pre(array &$properties, string $resource_type, string $filename, string $label)

