diff options
author | cash <cash.costello@gmail.com> | 2011-11-19 23:13:26 -0500 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2011-11-19 23:13:26 -0500 |
commit | c51b483f24936c8d04a54a6999412937ec21c49a (patch) | |
tree | d45e3b9ede0115e3ce3b84ea1622bfc98d7470a0 /views/default/tidypics | |
parent | 98664daa72a390fe760b69116af8bfa9327826e3 (diff) | |
download | elgg-c51b483f24936c8d04a54a6999412937ec21c49a.tar.gz elgg-c51b483f24936c8d04a54a6999412937ec21c49a.tar.bz2 |
uploading photos through the basic interface works now
Diffstat (limited to 'views/default/tidypics')
-rw-r--r-- | views/default/tidypics/forms/edit_multi.php | 59 |
1 files changed, 0 insertions, 59 deletions
diff --git a/views/default/tidypics/forms/edit_multi.php b/views/default/tidypics/forms/edit_multi.php deleted file mode 100644 index aba6fd324..000000000 --- a/views/default/tidypics/forms/edit_multi.php +++ /dev/null @@ -1,59 +0,0 @@ -<?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>
\ No newline at end of file |