blob: ba849d1b4867eacbc0a19ba6984cad34fec58b89 (
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
|
<?php
/**
* Basic uploader form
*
* This only handled uploading the images. Editing the titles and descriptions
* are handled with the edit forms.
*
* @uses $vars['entity']
*
* @author Cash Costello
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License v2
*/
$album = $vars['entity'];
$access_id = $album->access_id;
$maxfilesize = (float) elgg_get_plugin_setting('maxfilesize', 'tidypics');
$instructions = elgg_echo("tidypics:uploader:upload");
$max = elgg_echo('tidypics:uploader:basic', array($maxfilesize));
$list = '';
for ($x = 0; $x < 10; $x++) {
$list .= '<li>' . elgg_view('input/file', array('name' => 'images[]')) . '</li>';
}
$foot = elgg_view('input/hidden', array('name' => 'guid', 'value' => $album->getGUID()));
$foot .= elgg_view('input/submit', array('value' => elgg_echo("save")));
$form_body = <<<HTML
<div>
$max
</div>
<div>
<ol>
$list
</ol>
</div>
<div class='elgg-foot'>
$foot
</div>
HTML;
echo elgg_view('input/form', array(
'body' => $form_body,
'action' => 'action/photos/image/upload',
'enctype' => 'multipart/form-data',
));
|