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

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