blob: 6f94772e758393726348f45f0dbd15f6529c10fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
<?php
/**
* File helper functions
*
* @package ElggFile
*/
/**
* Prepare the upload/edit form variables
*
* @param FilePluginFile $file
* @return array
*/
function file_prepare_form_vars($file = null) {
// input names => defaults
$values = array(
'title' => '',
'description' => '',
'access_id' => ACCESS_DEFAULT,
'tags' => '',
'container_guid' => elgg_get_page_owner_guid(),
'guid' => null,
'entity' => $file,
);
if ($file) {
foreach (array_keys($values) as $field) {
if (isset($file->$field)) {
$values[$field] = $file->$field;
}
}
}
if (elgg_is_sticky_form('file')) {
$sticky_values = elgg_get_sticky_values('file');
foreach ($sticky_values as $key => $value) {
$values[$key] = $value;
}
}
elgg_clear_sticky_form('file');
return $values;
}
|