PluginProbe
Forumax – AI Powered Advanced Community Forum Plugin / 1.2.3
Forumax – AI Powered Advanced Community Forum Plugin v1.2.3
2.4.4 2.4.3 2.4.2 2.4.1 2.4.0 trunk 1.0.8 1.1.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.4.0 1.4.1 2.0.0 2.1.0 All 29 releases
bbp-core / includes / features / bbpc_attachments / forms / uploader.php

uploader.php in Forumax – AI Powered Advanced Community Forum Plugin 1.2.3, at includes/features/bbpc_attachments/forms/uploader.php

22 lines 633 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <fieldset class="bbp-form">
2 <legend><?php _e( 'Upload Attachments', 'bbp-core' ); ?></legend>
3 <div class="bbp-template-notice">
4 <p>
5 <?php
6
7 $size = $file_size < 1024 ? $file_size . ' KB' : floor( $file_size / 1024 ) . ' MB';
8
9 printf( __( 'Maximum file size allowed is %s.', 'bbp-core' ), $size );
10
11 ?>
12 </p>
13 </div>
14 <p class="bbp-attachments-form">
15 <label for="bbp_topic_tags">
16 <?php _e( 'Attachments', 'bbp-core' ); ?>:
17 </label><br/>
18 <input type="file" size="40" name="bbpc_attachment[]"><br/>
19 <a class="d4p-attachment-addfile" href="#"><?php _e( 'Add another file', 'bbp-core' ); ?></a>
20 </p>
21 </fieldset>
22