removed mods directory from the ATutor codebase
[atutor.git] / mods / photos / include / html / pa_organize_photos.tmpl.php
diff --git a/mods/photos/include/html/pa_organize_photos.tmpl.php b/mods/photos/include/html/pa_organize_photos.tmpl.php
deleted file mode 100644 (file)
index e796d4b..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-<div>
-       <div class="album_panel">
-               <?php if(!empty($this->photos)): ?>
-               <p><?php echo _AT('pa_organize_photo_blurb'); ?></p>
-               <form action="<?php echo 'edit_photos.php?aid='.$this->album_info['id'].SEP.'org=1'; ?>" id="reorder-images-form" class="flc-imageReorderer fl-imageReorderer fl-reorderer-horizontalLayout" style="float:left;">
-               <!-- loop through this -->
-               <?php foreach($this->photos as $key=>$photo):?>
-               <div class="photo_wrapper">
-                       <a class="photo_frame">
-                               <img src="<?php echo AT_PA_BASENAME.'get_photo.php?aid='.$this->album_info['id'].SEP.'pid='.$photo['id'].SEP.'ph='.getPhotoFilePath($photo['id'], '', $photo['created_date']);?>" title="<?php echo htmlentities_utf82($photo['description'], false); ?>" alt="<?php echo htmlentities_utf82($photo['alt_text'], false); ?>>" />
-                               <input name="image_<?php echo $photo['id']; ?>" value="<?php echo $photo['ordering']; ?>" type="hidden" />
-                       </a>
-               </div>
-               <?php endforeach; ?>
-               <!-- end loop -->
-               <input type="hidden" name="submit" value="<?php echo _AT('save_changes'); ?>" class="button"/>
-               </form>
-               <?php else: ?>
-               <div class="edit_photo_box">
-                       <p><?php echo _AT('pa_no_photos'); ?></p>
-               </div>
-               <?php endif; ?>
-       </div>
-</div>
-
-<script type="text/javascript">
-       demo.formBasedImageReorderer(); 
-</script>