From 243e836190128b14e1c5aa53b6d01b6771b19d8c Mon Sep 17 00:00:00 2001 From: Cash Costello Date: Sun, 31 Oct 2010 20:03:50 +0000 Subject: First cut at a album sorting interface --- views/default/tidypics/css.php | 20 ++++++++++++++- views/default/tidypics/sort.php | 54 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 73 insertions(+), 1 deletion(-) create mode 100644 views/default/tidypics/sort.php (limited to 'views') diff --git a/views/default/tidypics/css.php b/views/default/tidypics/css.php index f7dd256a1..abcdc86a9 100644 --- a/views/default/tidypics/css.php +++ b/views/default/tidypics/css.php @@ -384,4 +384,22 @@ float: right; .uploadifyError { border: 2px solid #FBCBBC; background-color: #FDE5DD; -} \ No newline at end of file +} + +#tidypics_album_sort { +padding:0; +margin:0; +} + +#tidypics_album_sort li { +float:left; +margin:3px; +width:161px; +height:161px; +} + +#tidypics_album_sort img { +border:1px solid #dedede; +padding:4px; +} + diff --git a/views/default/tidypics/sort.php b/views/default/tidypics/sort.php new file mode 100644 index 000000000..66dd8a999 --- /dev/null +++ b/views/default/tidypics/sort.php @@ -0,0 +1,54 @@ +getImageList(); + +// create submission form +$body = elgg_view('input/hidden', array('internalname' => 'guids')); +$body .= elgg_view('input/hidden', array('internalname' => 'album_guid', 'value' => $album->guid)); +$body .= elgg_view('input/submit', array('value' => elgg_echo('save'))); +?> +
+
+ +
+ 'tidypics_sort_form', + 'action' => "{$vars['url']}action/tidypics/sortalbum", + 'body' => $body, + ); + echo elgg_view('input/form', $params); + ?> + + +
+
+ + \ No newline at end of file -- cgit v1.2.3