aboutsummaryrefslogtreecommitdiff
path: root/mod/file/views/default/forms/file/upload.php
blob: 06b97388bc87f6039fab214aa299e8c8e53e3e8d (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
/**
 * Elgg file upload/save form
 *
 * @package ElggFile
 */

// once elgg_view stops throwing all sorts of junk into $vars, we can use 
$title = elgg_get_array_value('title', $vars, '');
$desc = elgg_get_array_value('description', $vars, '');
$tags = elgg_get_array_value('tags', $vars, '');
$access_id = elgg_get_array_value('access_id', $vars, ACCESS_DEFAULT);
$container_guid = elgg_get_array_value('container_guid', $vars);
$guid = elgg_get_array_value('guid', $vars, null);
$ajax = elgg_get_array_value('ajax', $vars, FALSE);

if ($guid) {
	$file_label = elgg_echo("file:replace");
} else {
	$file_label = elgg_echo("file:file");
}

?>
<div>
	<label><?php echo $file_label; ?></label><br />
	<?php echo elgg_view('input/file', array('internalname' => 'upload')); ?>
</div>
<div>
	<label><?php echo elgg_echo('title'); ?></label><br />
	<?php echo elgg_view('input/text', array('internalname' => 'title', 'value' => $title)); ?>
</div>
<div>
	<label><?php echo elgg_echo('description'); ?></label>
	<?php echo elgg_view('input/longtext', array('internalname' => 'description', 'value' => $desc)); ?>
</div>
<div>
	<label><?php echo elgg_echo('tags'); ?></label>
	<?php echo elgg_view('input/tags', array('internalname' => 'tags', 'value' => $tags)); ?>
</div>
<?php

$categories = elgg_view('input/categories', $vars);
if ($categories) {
	echo $categories;
}

?>
<div>
	<label><?php echo elgg_echo('access'); ?></label><br />
	<?php echo elgg_view('input/access', array('internalname' => 'access_id', 'value' => $access_id)); ?>
</div>
<div>
<?php

echo elgg_view('input/hidden', array('internalname' => 'container_guid', 'value' => $container_guid));

//@todo this should not be necessary in 1.8... -- ajax actions can be auto-detected
if ($ajax) {
	echo elgg_view('input/hidden', array('internalname' => 'ajax', 'value' => 1));
}

if ($guid) {
	echo elgg_view('input/hidden', array('internalname' => 'file_guid', 'value' => $guid));
}

echo elgg_view('input/submit', array('value' => elgg_echo("save")));

?>
</div>