PluginProbe
Forumax – AI Powered Advanced Community Forum Plugin / 1.4.0
Forumax – AI Powered Advanced Community Forum Plugin v1.4.0
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.4.0, at includes/features/bbpc_attachments/forms/uploader.php

25 lines 787 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 esc_html_e( 'Upload Attachments', 'bbp-core' ); ?></legend>
3 <div class="bbp-template-notice">
4 <p>
5 <?php
6 $size = $file_size < 1024 ? $file_size . ' KB' : floor( $file_size / 1024 ) . ' MB';
7 printf( /* translators: %s: Allowed file upload size */
8 esc_html__( 'Maximum file size allowed is %s.', 'bbp-core' ),
9 esc_html( $size )
10 );
11 ?>
12 </p>
13 </div>
14 <p class="bbp-attachments-form">
15 <label for="bbp_topic_tags">
16 <?php esc_html_e( 'Attachments', 'bbp-core' ); ?>:
17 </label><br/>
18 <div class="bbpc_attachments">
19 <input type="file" size="40" name="bbpc_attachment[]">
20 <a class="bbpc-attachment-addfile" href="#">
21 <?php esc_html_e( '+ Add another file', 'bbp-core' ); ?>
22 </a>
23 </div>
24 </p>
25 </fieldset>