diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-08-19 12:04:17 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-08-19 12:04:17 +0000 |
commit | 6913e7153000ff39f491accf06cf5817f7e6bfd3 (patch) | |
tree | 211a324c97d0931363a8f886f495e15dc780ae4c /views/default/widgets/latest/edit.php | |
parent | fb8c5cb4681f88d25e4a4eb0cc0d7b31216248f7 (diff) | |
download | elgg-6913e7153000ff39f491accf06cf5817f7e6bfd3.tar.gz elgg-6913e7153000ff39f491accf06cf5817f7e6bfd3.tar.bz2 |
added a latest photos widget
Diffstat (limited to 'views/default/widgets/latest/edit.php')
-rw-r--r-- | views/default/widgets/latest/edit.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/views/default/widgets/latest/edit.php b/views/default/widgets/latest/edit.php new file mode 100644 index 000000000..15a56af82 --- /dev/null +++ b/views/default/widgets/latest/edit.php @@ -0,0 +1,15 @@ +<p>
+<?php
+ echo elgg_echo("tidypics:widget:num_latest") . ": ";
+
+ if($vars['entity']->num_display == '') $vars['entity']->num_display = 6;
+
+?>
+ <select name="params[num_display]">
+ <option value="6" <?php if($vars['entity']->num_display == 6) echo "SELECTED"; ?>>6</option>
+ <option value="9" <?php if($vars['entity']->num_display == 9) echo "SELECTED"; ?>>9</option>
+ <option value="12" <?php if($vars['entity']->num_display == 12) echo "SELECTED"; ?>>12</option>
+ <option value="15" <?php if($vars['entity']->num_display == 15) echo "SELECTED"; ?>>15</option>
+ <option value="18" <?php if($vars['entity']->num_display == 18) echo "SELECTED"; ?>>18</option>
+ </select>
+</p>
\ No newline at end of file |