edit.php 298 B

12345678910111213
  1. <?php
  2. $file_count = sanitise_int($vars["entity"]->file_count);
  3. if (empty($file_count)) {
  4. $file_count = 4;
  5. }
  6. ?>
  7. <div>
  8. <?php
  9. echo elgg_echo("file:num_files");
  10. echo elgg_view("input/dropdown", array("name" => "params[file_count]", "options" => range(1, 10), "value" => $file_count));
  11. ?>
  12. </div>