[ Index ]

PHP Cross Reference of phpBB-3.2.11-deutsch

title

Body

[close]

/styles/prosilver/template/ -> posting_attach_body.html (source)

   1  <div class="panel bg3 panel-container" id="attach-panel">
   2      <div class="inner">
   3  
   4      <p>{L_ADD_ATTACHMENT_EXPLAIN} <span class="hidden" id="drag-n-drop-message">{L_PLUPLOAD_DRAG_TEXTAREA}</span></p>
   5  
   6      <fieldset class="fields2" id="attach-panel-basic">
   7      <dl>
   8          <dt><label for="fileupload">{L_FILENAME}{L_COLON}</label></dt>
   9          <dd>
  10              <input type="file" name="fileupload" id="fileupload" class="inputbox autowidth" />
  11              <input type="submit" name="add_file" value="{L_ADD_FILE}" class="button2" onclick="upload = true;" />
  12          </dd>
  13      </dl>
  14      <dl>
  15          <dt><label for="filecomment">{L_FILE_COMMENT}{L_COLON}</label></dt>
  16          <dd><textarea name="filecomment" id="filecomment" rows="1" cols="40" class="inputbox autowidth">{FILE_COMMENT}</textarea></dd>
  17      </dl>
  18      </fieldset>
  19  
  20      <div id="attach-panel-multi" class="attach-panel-multi">
  21          <input type="button" class="button2" value="{L_PLUPLOAD_ADD_FILES}" id="add_files" />
  22      </div>
  23  
  24      {% EVENT posting_attach_body_file_list_before %}
  25      <div class="panel<!-- IF not .attach_row --> hidden<!-- ENDIF --> file-list-container" id="file-list-container">
  26          <div class="inner">
  27              <table class="table1 zebra-list fixed-width-table">
  28                  <thead>
  29                      <tr>
  30                          <th class="attach-name">{L_PLUPLOAD_FILENAME}</th>
  31                          <th class="attach-comment">{L_FILE_COMMENT}</th>
  32                          <th class="attach-filesize">{L_PLUPLOAD_SIZE}</th>
  33                          <th class="attach-status">{L_PLUPLOAD_STATUS}</th>
  34                      </tr>
  35                  </thead>
  36                  <tbody class="responsive-skip-empty file-list" id="file-list">
  37                      <tr class="attach-row attach-row-tpl" id="attach-row-tpl">
  38                              <td class="attach-name">
  39                                  <span class="file-name ellipsis-text"></span>
  40                                  <span class="attach-controls">
  41                                      {% if S_BBCODE_ALLOWED %}<input type="button" value="{{ lang('PLACE_INLINE') }}" class="button2 hidden file-inline-bbcode" />&nbsp;{% endif %}
  42                                      <input type="button" value="{L_DELETE_FILE}" class="button2 file-delete" />
  43                                  </span>
  44                                  <span class="clear"></span>
  45                              </td>
  46                              <td class="attach-comment">
  47                                  <textarea rows="1" cols="30" class="inputbox"></textarea>
  48                              </td>
  49                              <td class="attach-filesize">
  50                                  <span class="file-size"></span>
  51                              </td>
  52                              <td class="attach-status">
  53                                  <span class="file-progress">
  54                                      <span class="file-progress-bar"></span>
  55                                  </span>
  56                                  <span class="file-status"></span>
  57                              </td>
  58                      </tr>
  59                      {% EVENT posting_attach_body_attach_row_before %}
  60                      <!-- BEGIN attach_row -->
  61                          {% EVENT posting_attach_body_attach_row_prepend %}
  62                          <tr class="attach-row" data-attach-id="{attach_row.ATTACH_ID}">
  63                              <td class="attach-name">
  64                                  <span class="file-name ellipsis-text"><a href="{attach_row.U_VIEW_ATTACHMENT}">{attach_row.FILENAME}</a></span>
  65                                  {% EVENT posting_attach_body_attach_row_controls_prepend %}
  66                                  <span class="attach-controls">
  67                                      {% if S_BBCODE_ALLOWED and S_INLINE_ATTACHMENT_OPTIONS %}<input type="button" value="{{ lang('PLACE_INLINE') }}" class="button2 file-inline-bbcode" />&nbsp;{% endif %}
  68                                      <input type="submit" name="delete_file[{attach_row.ASSOC_INDEX}]" value="{L_DELETE_FILE}" class="button2 file-delete" />
  69                                  </span>
  70                                  {% EVENT posting_attach_body_attach_row_controls_append %}
  71                                  <span class="clear"></span>
  72                              </td>
  73                              <td class="attach-comment">
  74                                  <textarea name="comment_list[{attach_row.ASSOC_INDEX}]" rows="1" cols="30" class="inputbox">{attach_row.FILE_COMMENT}</textarea>
  75                                  {attach_row.S_HIDDEN}
  76                              </td>
  77                              <td class="attach-filesize">
  78                                  <span class="file-size">{attach_row.FILESIZE}</span>
  79                              </td>
  80                              <td class="attach-status">
  81                                  <span class="file-status file-uploaded"></span>
  82                              </td>
  83                          </tr>
  84                          {% EVENT posting_attach_body_attach_row_append %}
  85                      <!-- END attach_row -->
  86                      {% EVENT posting_attach_body_attach_row_after %}
  87                  </tbody>
  88              </table>
  89          </div>
  90      </div>
  91      {% EVENT posting_attach_body_file_list_after %}
  92      </div>
  93  </div>


Generated: Wed Nov 11 20:33:01 2020 Cross-referenced by PHPXref 0.7.1