AC_4897, AC_4898, AC_4899: Multifile uploader fixes.
[acontent.git] / themes / default / confirmmessage.tmpl.php
1 <?php  
2 /************************************************************************/
3 /* AContent                                                             */
4 /************************************************************************/
5 /* Copyright (c) 2010                                                   */
6 /* Inclusive Design Institute                                           */
7 /*                                                                      */
8 /* This program is free software. You can redistribute it and/or        */
9 /* modify it under the terms of the GNU General Public License          */
10 /* as published by the Free Software Foundation.                        */
11 /************************************************************************/
12
13 global $_base_href;
14  
15 // header
16 ?>
17
18 <form method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">
19 <?php if(isset($this->hidden_vars)): ?>
20         <?php echo $this->hidden_vars; ?>
21 <?php endif; ?>
22
23 <div class="input-form">
24         <div class="row">
25                 <?php if (is_array($this->item)) : ?>
26                         <?php foreach($this->item as $e) : ?>
27                                 <p><?php echo $e; ?></p>
28                         <?php endforeach; ?>
29                 <?php endif; ?>
30         </div>
31
32         <div class="row buttons">
33                 <input type="submit" name="submit_yes" value="<?php echo $this->button_yes_text; ?>" /> 
34 <?php if(!$this->hide_button_no): ?>
35                 <input type="submit" name="submit_no" value="<?php echo $this->button_no_text; ?>" />
36 <?php endif; ?>
37         </div>
38 </div>
39 </form>