123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- /**
- * Basic uploader form
- *
- * This only handled uploading the images. Editing the titles and descriptions
- * are handled with the edit forms.
- *
- * @uses $vars['entity']
- *
- * @author Cash Costello
- * @license http://www.gnu.org/licenses/gpl-2.0.html GNU General Public License v2
- */
- $album = $vars['entity'];
- $maxfilesize = (float) elgg_get_plugin_setting('maxfilesize', 'tidypics');
- $instructions = elgg_echo("tidypics:uploader:upload");
- $max = elgg_echo('tidypics:uploader:basic', array($maxfilesize));
- $list = '';
- for ($x = 0; $x < 6; $x++) { // reduce input file buttons
- $list .= '<li>' . elgg_view('input/file', array('name' => 'images[]')) . '</li>';
- }
- $foot = elgg_view('input/hidden', array('name' => 'guid', 'value' => $album->getGUID()));
- $foot .= elgg_view('input/submit', array('value' => elgg_echo("photos:addphotos")));
- $form_body = <<<HTML
- <div>
- $max
- </div>
- <div>
- <ol>
- $list
- </ol>
- </div>
- <div class='elgg-foot'>
- $foot
- </div>
- HTML;
- echo elgg_view('input/form', array(
- 'body' => $form_body,
- 'action' => 'action/photos/image/upload',
- 'enctype' => 'multipart/form-data',
- ));
|