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
|
<?php
/**
* form for mass editing all uploaded images
*/
$images = $vars['images'];
$album = get_entity($images[0]->container_guid);
?>
<div class="contentWrapper">
<form action="<?php echo $vars['url']; ?>action/tidypics/edit_multi" method="post">
<?php
// make sure one of the images becomes the cover if there isn't one already
if (!$album->getCoverImageGuid()) {
$no_cover = true;
}
foreach ($images as $key => $image) {
$guid = $image->guid;
$body = $image->description;
$title = $image->title;
$tags = $image->tags;
// first one is default cover if there isn't one already
if ($no_cover) {
$val = $guid;
$no_cover = false;
}
echo '<div class="tidypics_edit_image_container">';
echo '<img src="' . $vars['url'] . 'mod/tidypics/thumbnail.php?file_guid=' . $guid . '&size=small" class="tidypics_edit_images" alt="' . $title . '"/>';
echo '<div class="tidypics_image_info">';
echo '<p><label>' . elgg_echo('album:title') . '</label>';
echo elgg_view("input/text", array("internalname" => "title[$key]", "value" => $title,)) . "\n";
echo '</p>';
echo '<p><label>' . elgg_echo('caption') . "</label>";
echo elgg_view("input/longtext",array("internalname" => "caption[$key]", "value" => $body, "class" => 'tidypics_caption_input',)) . "\n";
echo "</p>";
echo '<p><label>' . elgg_echo("tags") . "</label>\n";
echo elgg_view("input/tags", array( "internalname" => "tags[$key]","value" => $tags)) . "\n";
echo '</p>';
echo '<input type="hidden" name="image_guid[' .$key. ']" value="'. $guid .'">' . "\n";
echo elgg_view('input/securitytoken');
echo elgg_view("input/radio", array("internalname" => "cover",
"value" => $val,
'options' => array( elgg_echo('album:cover') => $guid,
),
));
echo '</div>';
echo '</div>';
}
?>
<input type="hidden" name="container_guid" value="<?php echo $album->guid; ?>" />
<p><input type="submit" name="submit" value="<?php echo elgg_echo('save'); ?>" /></p>
</form>
</div>
|