Plugin Directory

Changeset 2008848


Ignore:
Timestamp:
01/09/2019 03:40:40 AM (7 years ago)
Author:
rinatkhaziev
Message:

Merging master from GitHub https://github.com/rinatkhaziev/wp-frontend-uploader/

Location:
frontend-uploader/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • frontend-uploader/trunk/frontend-uploader.php

    r1971315 r2008848  
    66Version: 1.3.2
    77Author URI: http://digitallyconscious.com
     8Text Domain: frontend-uploader
    89
    910GNU General Public License, Free Software Foundation <http://creativecommons.org/licenses/GPL/2.0/>
     
    878879                'aria-required' => false,
    879880                'values' => '',
    880                 'wysiwyg_enabled' => false,
     881                'wysiwyg_enabled' => isset( $this->settings['wysiwyg_enabled'] ) && 'on' === $this->settings['wysiwyg_enabled'] ,
    881882                'role' => 'meta',
    882883                'minlength' => '',
     
    942943
    943944        // Render WYSIWYG textarea
    944         if ( ( isset( $this->settings['wysiwyg_enabled'] ) && 'on' === $this->settings['wysiwyg_enabled'] ) || $wysiwyg_enabled === true ) {
     945        if ( $wysiwyg_enabled ) {
    945946            ob_start();
    946947            wp_editor( '', $id, array(
     
    948949                    'media_buttons' => false,
    949950                    'teeny' => true,
    950                     'quicktags' => false
     951                    'quicktags' => false,
    951952                ) );
     953
    952954            $tiny = ob_get_clean();
    953955
    954956            return $this->html->element( 'div', $label  . $tiny . $help, array( 'class' => 'ugc-input-wrapper' ), false ) ;
    955957        }
     958
    956959        $element = $this->html->element( 'textarea', '', array( 'name' => $name, 'id' => $id, 'class' => $class, 'minlength' => $minlength, 'maxlength' => $maxlength, 'required' => $required ) );
    957960        // Render plain textarea
     
    10811084                    'post_type' => 'post',
    10821085                    'category' => '',
    1083                     'suppress_default_fields' => false,
     1086                    'suppress_default_fields' => ! ( isset( $this->settings['suppress_default_fields'] ) && 'on' === $this->settings['suppress_default_fields'] ),
    10841087                    'append_to_post' => false,
    10851088                ), $atts ) );
     
    11311134        }
    11321135
    1133         if ( !( isset( $this->settings['suppress_default_fields'] ) && 'on' === $this->settings['suppress_default_fields'] ) && ( $suppress_default_fields === false ) ) {
     1136        if ( ! $suppress_default_fields ) {
    11341137
    11351138            // Display title field
     
    11811184            echo do_shortcode( $content );
    11821185
    1183         if ( !( isset( $this->settings['suppress_default_fields'] ) && 'on' === $this->settings['suppress_default_fields'] ) && ( $suppress_default_fields === false ) ) {
     1186        if ( ! $suppress_default_fields ) {
    11841187
    11851188            if ( in_array( $form_layout, array( 'image', 'media', 'post_image', 'post_media' ), true ) ) {
  • frontend-uploader/trunk/languages/frontend-uploader.pot

    r1341143 r2008848  
    1 # Copyright (C) 2013 Frontend Uploader
    2 # This file is distributed under the same license as the Frontend Uploader package.
    3 #, fuzzy
     1# Copyright (C) 2019 Rinat Khaziev, Daniel Bachhuber
     2# This file is distributed under the same license as the Frontend Uploader plugin.
    43msgid ""
    54msgstr ""
    6 "Project-Id-Version: Frontend Uploader 0.9.1\n"
    7 "Report-Msgid-Bugs-To: http://wordpress.org/tag/frontend-uploader\n"
    8 "POT-Creation-Date: 2015-12-10 01:33-0600\n"
    9 "PO-Revision-Date: 2014-11-21 21:16+0300\n"
     5"Project-Id-Version: Frontend Uploader 1.3.2\n"
     6"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-frontend-uploader\n"
    107"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
    11 "Language-Team: Frontend Uploader <[email protected]>\n"
    12 "Language: en_US\n"
     8"Language-Team: LANGUAGE <[email protected]>\n"
    139"MIME-Version: 1.0\n"
    1410"Content-Type: text/plain; charset=UTF-8\n"
    1511"Content-Transfer-Encoding: 8bit\n"
    16 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
    17 "X-Generator: Poedit 1.8.6\n"
    18 "X-Poedit-KeywordsList: __;_e\n"
    19 "X-Poedit-Basepath: ..\n"
    20 "X-Poedit-SourceCharset: UTF-8\n"
    21 "X-Poedit-SearchPath-0: .\n"
    22 "X-Poedit-SearchPathExcluded-0: *.js\n"
    23 
    24 #: frontend-uploader.php:182
    25 msgid "Frontend Uploader requires WordPress 3.3 or newer. Please upgrade."
    26 msgstr ""
    27 
    28 #: frontend-uploader.php:285 frontend-uploader.php:286
    29 msgid "Unnamed"
    30 msgstr ""
    31 
    32 #: frontend-uploader.php:338
    33 msgid "Untitled post submission"
    34 msgstr ""
    35 
    36 #: frontend-uploader.php:485
    37 msgid "New content was uploaded on your site"
    38 msgstr ""
    39 
    40 #: frontend-uploader.php:570 frontend-uploader.php:573
    41 #: frontend-uploader.php:577 lib/views/manage-ugc-media.tpl.php:2
    42 msgid "Manage UGC"
    43 msgstr ""
    44 
    45 #: frontend-uploader.php:573 frontend-uploader.php:577
    46 #: lib/views/manage-ugc-posts.tpl.php:2
    47 msgid "Manage UGC Posts"
    48 msgstr ""
    49 
    50 #: frontend-uploader.php:882
    51 msgid "Submit a new post"
    52 msgstr ""
    53 
    54 #: frontend-uploader.php:908
    55 msgid "Description"
    56 msgstr ""
    57 
    58 #: frontend-uploader.php:909
    59 msgid "Your Media Files"
    60 msgstr ""
    61 
    62 #: frontend-uploader.php:910
    63 msgid "Submit"
    64 msgstr ""
    65 
    66 #: frontend-uploader.php:948
    67 msgid "Title"
    68 msgstr ""
    69 
    70 #: frontend-uploader.php:967
    71 msgid "Post content or file description"
    72 msgstr ""
    73 
    74 #: frontend-uploader.php:978
    75 msgid "Post content"
    76 msgstr ""
    77 
    78 #: frontend-uploader.php:993
    79 #: lib/php/class-frontend-uploader-wp-media-list-table.php:82
    80 msgid "Author"
    81 msgstr ""
    82 
    83 #: frontend-uploader.php:1147
    84 msgid "Your file was successfully uploaded!"
    85 msgstr ""
    86 
    87 #: frontend-uploader.php:1151
    88 msgid "Your post was successfully submitted!"
    89 msgstr ""
    90 
    91 #: frontend-uploader.php:1155
    92 msgid "There was an error with your submission"
    93 msgstr ""
    94 
    95 #: frontend-uploader.php:1159
    96 msgid "Your submission looks spammy"
    97 msgstr ""
    98 
    99 #: frontend-uploader.php:1183
    100 msgid "Security check failed!"
    101 msgstr ""
    102 
    103 #: frontend-uploader.php:1186
    104 msgid ""
    105 "This kind of file is not allowed. Please, try again selecting other file."
    106 msgstr ""
    107 
    108 #: frontend-uploader.php:1190
    109 msgid "The content you are trying to post is invalid."
    110 msgstr ""
    111 
    112 #: frontend-uploader.php:1193
    113 msgid "Couldn't upload the file"
    114 msgstr ""
    115 
    116 #: frontend-uploader.php:1196
    117 msgid "Couldn't create the post"
    118 msgstr ""
    119 
    120 #: lib/php/class-frontend-uploader-wp-media-list-table.php:48
    121 #: lib/php/class-frontend-uploader-wp-media-list-table.php:269
    122 #: lib/php/class-frontend-uploader-wp-media-list-table.php:285
    123 #: lib/php/class-frontend-uploader-wp-media-list-table.php:291
    124 #: lib/php/class-frontend-uploader-wp-posts-list-table.php:30
    125 #: lib/php/class-frontend-uploader-wp-posts-list-table.php:108
    126 msgid "Delete Permanently"
    127 msgstr ""
    128 
    129 #: lib/php/class-frontend-uploader-wp-media-list-table.php:50
    130 msgid "Attach to a post"
    131 msgstr ""
    132 
    133 #: lib/php/class-frontend-uploader-wp-media-list-table.php:73
    134 msgid "No media attachments found."
    135 msgstr ""
    136 
    137 #: lib/php/class-frontend-uploader-wp-media-list-table.php:137
    138 #: lib/php/class-frontend-uploader-wp-media-list-table.php:150
    139 #, php-format
    140 msgid "Edit \"%s\""
    141 msgstr ""
    142 
    143 #: lib/php/class-frontend-uploader-wp-media-list-table.php:182
    144 msgid "No Tags"
    145 msgstr ""
    146 
    147 #: lib/php/class-frontend-uploader-wp-media-list-table.php:197
    148 msgid "Unpublished"
    149 msgstr ""
    150 
    151 #: lib/php/class-frontend-uploader-wp-media-list-table.php:199
    152 msgid "Y/m/d g:i:s A"
    153 msgstr ""
    154 
    155 #: lib/php/class-frontend-uploader-wp-media-list-table.php:204
    156 #, php-format
    157 msgid "%s from now"
    158 msgstr ""
    159 
    160 #: lib/php/class-frontend-uploader-wp-media-list-table.php:206
    161 #, php-format
    162 msgid "%s ago"
    163 msgstr ""
    164 
    165 #: lib/php/class-frontend-uploader-wp-media-list-table.php:208
    166 #: lib/php/class-frontend-uploader-wp-media-list-table.php:224
    167 #: lib/php/class-frontend-uploader-wp-media-list-table.php:331
    168 msgid "Y/m/d"
    169 msgstr ""
    170 
    171 #: lib/php/class-frontend-uploader-wp-media-list-table.php:229
    172 #: lib/php/class-frontend-uploader-wp-media-list-table.php:338
    173 msgid "(Unattached)"
    174 msgstr ""
    175 
    176 #: lib/php/class-frontend-uploader-wp-media-list-table.php:262
    177 #: lib/php/class-frontend-uploader-wp-media-list-table.php:277
    178 msgid "Edit"
    179 msgstr ""
    180 
    181 #: lib/php/class-frontend-uploader-wp-media-list-table.php:265
    182 #: lib/php/class-frontend-uploader-wp-media-list-table.php:282
    183 msgid "Trash"
    184 msgstr ""
    185 
    186 #: lib/php/class-frontend-uploader-wp-media-list-table.php:271
    187 #: lib/php/class-frontend-uploader-wp-media-list-table.php:296
    188 #, php-format
    189 msgid "View \"%s\""
    190 msgstr ""
    191 
    192 #: lib/php/class-frontend-uploader-wp-media-list-table.php:271
    193 #: lib/php/class-frontend-uploader-wp-media-list-table.php:296
    194 msgid "View"
    195 msgstr ""
    196 
    197 #: lib/php/class-frontend-uploader-wp-media-list-table.php:273
    198 #: lib/php/class-frontend-uploader-wp-media-list-table.php:339
    199 msgid "Attach"
    200 msgstr ""
    201 
    202 #: lib/php/class-frontend-uploader-wp-media-list-table.php:280
    203 msgid "Restore"
    204 msgstr ""
    205 
    206 #: lib/php/class-frontend-uploader-wp-media-list-table.php:290
    207 #: lib/php/class-frontend-uploader-wp-posts-list-table.php:29
    208 msgid "Approve"
    209 msgstr ""
    210 
    211 #: lib/php/class-frontend-uploader-wp-media-list-table.php:333
    212 msgid "Re-Attach"
    213 msgstr ""
    214 
    215 #: lib/php/class-frontend-uploader-wp-posts-list-table.php:117
    216 msgid "No posts found."
     12"POT-Creation-Date: 2019-01-09T03:15:48+00:00\n"
     13"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
     14"X-Generator: WP-CLI 2.1.0-alpha-93d1e17\n"
     15"X-Domain: frontend-uploader\n"
     16
     17#. Plugin Name of the plugin
     18msgid "Frontend Uploader"
     19msgstr ""
     20
     21#. Description of the plugin
     22msgid "Allow your visitors to upload content and moderate it."
     23msgstr ""
     24
     25#. Author of the plugin
     26msgid "Rinat Khaziev, Daniel Bachhuber"
     27msgstr ""
     28
     29#. Author URI of the plugin
     30msgid "http://digitallyconscious.com"
    21731msgstr ""
    21832
     
    23448
    23549#: lib/php/frontend-uploader-settings.php:78
     50msgid "Enable Recaptcha spam protection"
     51msgstr ""
     52
     53#: lib/php/frontend-uploader-settings.php:79
     54msgid "Yes (Fill in Recaptcha credentials below)"
     55msgstr ""
     56
     57#: lib/php/frontend-uploader-settings.php:85
     58msgid "Recaptcha Site Key"
     59msgstr ""
     60
     61#: lib/php/frontend-uploader-settings.php:92
     62msgid "Recaptcha Site Secret"
     63msgstr ""
     64
     65#: lib/php/frontend-uploader-settings.php:99
    23666msgid "Notify site admins"
    23767msgstr ""
    23868
    239 #: lib/php/frontend-uploader-settings.php:79
    240 #: lib/php/frontend-uploader-settings.php:102
    241 #: lib/php/frontend-uploader-settings.php:117
    242 #: lib/php/frontend-uploader-settings.php:132
    243 #: lib/php/frontend-uploader-settings.php:139
    244 #: lib/php/frontend-uploader-settings.php:154
     69#: lib/php/frontend-uploader-settings.php:100
     70#: lib/php/frontend-uploader-settings.php:123
     71#: lib/php/frontend-uploader-settings.php:138
     72#: lib/php/frontend-uploader-settings.php:153
     73#: lib/php/frontend-uploader-settings.php:160
     74#: lib/php/frontend-uploader-settings.php:167
     75#: lib/php/frontend-uploader-settings.php:174
    24576msgid "Yes"
    24677msgstr ""
    24778
    248 #: lib/php/frontend-uploader-settings.php:85
     79#: lib/php/frontend-uploader-settings.php:106
    24980msgid "Admin Notification"
    25081msgstr ""
    25182
    252 #: lib/php/frontend-uploader-settings.php:86
     83#: lib/php/frontend-uploader-settings.php:107
    25384msgid "Message that admin will get on new file upload"
    25485msgstr ""
    25586
    256 #: lib/php/frontend-uploader-settings.php:93
     87#: lib/php/frontend-uploader-settings.php:114
    25788msgid "Notification email"
    25889msgstr ""
    25990
    260 #: lib/php/frontend-uploader-settings.php:94
     91#: lib/php/frontend-uploader-settings.php:115
    26192msgid "Leave blank to use site admin email"
    26293msgstr ""
    26394
    264 #: lib/php/frontend-uploader-settings.php:101
     95#: lib/php/frontend-uploader-settings.php:122
    26596msgid "Show author field"
    26697msgstr ""
    26798
    268 #: lib/php/frontend-uploader-settings.php:108
     99#: lib/php/frontend-uploader-settings.php:129
    269100msgid "Enable Frontend Uploader for the following post types"
    270101msgstr ""
    271102
    272 #: lib/php/frontend-uploader-settings.php:116
     103#: lib/php/frontend-uploader-settings.php:137
    273104msgid "Enable visual editor for textareas"
    274105msgstr ""
    275106
    276 #: lib/php/frontend-uploader-settings.php:123
    277 msgid ""
    278 "Also allow to upload these files (in addition to the ones that WP allows by "
    279 "default)"
    280 msgstr ""
    281 
    282 #: lib/php/frontend-uploader-settings.php:131
     107#: lib/php/frontend-uploader-settings.php:144
     108msgid "Also allow to upload these files (in addition to the ones that WP allows by default)"
     109msgstr ""
     110
     111#: lib/php/frontend-uploader-settings.php:152
    283112msgid "Auto-approve registered users files"
    284113msgstr ""
    285114
    286 #: lib/php/frontend-uploader-settings.php:138
     115#: lib/php/frontend-uploader-settings.php:159
    287116msgid "Auto-approve any files"
    288117msgstr ""
    289118
    290 #: lib/php/frontend-uploader-settings.php:145
    291 msgid "Default file name"
    292 msgstr ""
    293 
    294 #: lib/php/frontend-uploader-settings.php:146
    295 msgid "Leave blank to use original file name"
    296 msgstr ""
    297 
    298 #: lib/php/frontend-uploader-settings.php:153
     119#: lib/php/frontend-uploader-settings.php:166
     120msgid "Obfuscate file name"
     121msgstr ""
     122
     123#: lib/php/frontend-uploader-settings.php:173
    299124msgid "Suppress default fields"
     125msgstr ""
     126
     127#: lib/php/class-frontend-uploader-wp-media-list-table.php:39
     128#: lib/php/class-frontend-uploader-wp-posts-list-table.php:24
     129msgid "Approve"
     130msgstr ""
     131
     132#: lib/php/class-frontend-uploader-wp-media-list-table.php:43
     133msgid "Re-Attach"
     134msgstr ""
     135
     136#: lib/php/class-frontend-uploader-wp-posts-list-table.php:25
     137#: lib/php/class-frontend-uploader-wp-posts-list-table.php:60
     138msgid "Delete Permanently"
     139msgstr ""
     140
     141#: lib/views/manage-ugc-posts.tpl.php:2
     142#: frontend-uploader.php:758
     143#: frontend-uploader.php:762
     144msgid "Manage UGC Posts"
     145msgstr ""
     146
     147#: lib/views/manage-ugc-posts.tpl.php:4
     148msgid "You do not have permission to publish posts."
     149msgstr ""
     150
     151#: lib/views/manage-ugc-posts.tpl.php:15
     152#: lib/views/manage-ugc-media.tpl.php:16
     153msgid "Search results for &#8220;%s&#8221;"
     154msgstr ""
     155
     156#: lib/views/manage-ugc-posts.tpl.php:21
     157#: lib/views/manage-ugc-posts.tpl.php:51
     158msgid "Post updated."
     159msgstr ""
     160
     161#: lib/views/manage-ugc-posts.tpl.php:38
     162#: lib/views/manage-ugc-posts.tpl.php:54
     163#: lib/views/manage-ugc-media.tpl.php:39
     164#: lib/views/manage-ugc-media.tpl.php:55
     165msgid "Undo"
     166msgstr ""
     167
     168#: lib/views/manage-ugc-posts.tpl.php:52
     169#: lib/views/manage-ugc-media.tpl.php:53
     170msgid "Media permanently deleted."
     171msgstr ""
     172
     173#: lib/views/manage-ugc-posts.tpl.php:53
     174msgid "Error saving Post."
     175msgstr ""
     176
     177#: lib/views/manage-ugc-posts.tpl.php:54
     178#: lib/views/manage-ugc-media.tpl.php:55
     179msgid "Media moved to the trash."
     180msgstr ""
     181
     182#: lib/views/manage-ugc-posts.tpl.php:55
     183#: lib/views/manage-ugc-media.tpl.php:56
     184msgid "Media restored from the trash."
     185msgstr ""
     186
     187#: lib/views/manage-ugc-posts.tpl.php:70
     188msgid "Search Posts"
     189msgstr ""
     190
     191#: lib/views/manage-ugc-media.tpl.php:2
     192#: frontend-uploader.php:755
     193#: frontend-uploader.php:758
     194#: frontend-uploader.php:762
     195msgid "Manage UGC"
    300196msgstr ""
    301197
     
    304200msgstr ""
    305201
    306 #: lib/views/manage-ugc-media.tpl.php:16 lib/views/manage-ugc-posts.tpl.php:17
    307 #, php-format
    308 msgid "Search results for &#8220;%s&#8221;"
    309 msgstr ""
    310 
    311 #: lib/views/manage-ugc-media.tpl.php:22 lib/views/manage-ugc-media.tpl.php:52
     202#: lib/views/manage-ugc-media.tpl.php:22
     203#: lib/views/manage-ugc-media.tpl.php:52
    312204msgid "Media attachment updated."
    313 msgstr ""
    314 
    315 #: lib/views/manage-ugc-media.tpl.php:39 lib/views/manage-ugc-media.tpl.php:55
    316 #: lib/views/manage-ugc-posts.tpl.php:40 lib/views/manage-ugc-posts.tpl.php:56
    317 msgid "Undo"
    318 msgstr ""
    319 
    320 #: lib/views/manage-ugc-media.tpl.php:53 lib/views/manage-ugc-posts.tpl.php:54
    321 msgid "Media permanently deleted."
    322205msgstr ""
    323206
     
    326209msgstr ""
    327210
    328 #: lib/views/manage-ugc-media.tpl.php:55 lib/views/manage-ugc-posts.tpl.php:56
    329 msgid "Media moved to the trash."
    330 msgstr ""
    331 
    332 #: lib/views/manage-ugc-media.tpl.php:56 lib/views/manage-ugc-posts.tpl.php:57
    333 msgid "Media restored from the trash."
    334 msgstr ""
    335 
    336211#: lib/views/manage-ugc-media.tpl.php:71
    337212msgid "Search Media"
    338213msgstr ""
    339214
    340 #: lib/views/manage-ugc-posts.tpl.php:5
    341 msgid "You do not have permission to publish posts."
    342 msgstr ""
    343 
    344 #: lib/views/manage-ugc-posts.tpl.php:23 lib/views/manage-ugc-posts.tpl.php:53
    345 msgid "Post updated."
    346 msgstr ""
    347 
    348 #: lib/views/manage-ugc-posts.tpl.php:55
    349 msgid "Error saving Post."
    350 msgstr ""
    351 
    352 #: lib/views/manage-ugc-posts.tpl.php:72
    353 msgid "Search Posts"
    354 msgstr ""
     215#: frontend-uploader.php:202
     216msgid "Frontend Uploader requires WordPress 3.3 or newer. Please upgrade."
     217msgstr ""
     218
     219#: frontend-uploader.php:319
     220#: frontend-uploader.php:320
     221msgid "Unnamed"
     222msgstr ""
     223
     224#: frontend-uploader.php:435
     225msgid "Untitled post submission"
     226msgstr ""
     227
     228#: frontend-uploader.php:595
     229msgid "New content was uploaded on your site"
     230msgstr ""
     231
     232#: frontend-uploader.php:693
     233msgid "Couldn't find template file"
     234msgstr ""
     235
     236#: frontend-uploader.php:1078
     237msgid "Submit a new post"
     238msgstr ""
     239
     240#: frontend-uploader.php:1105
     241msgid "Description"
     242msgstr ""
     243
     244#: frontend-uploader.php:1106
     245msgid "Your Media Files"
     246msgstr ""
     247
     248#: frontend-uploader.php:1107
     249msgid "Submit"
     250msgstr ""
     251
     252#: frontend-uploader.php:1145
     253msgid "Title"
     254msgstr ""
     255
     256#: frontend-uploader.php:1164
     257msgid "Post content or file description"
     258msgstr ""
     259
     260#: frontend-uploader.php:1176
     261msgid "Post content"
     262msgstr ""
     263
     264#: frontend-uploader.php:1348
     265msgid "Your file was successfully uploaded!"
     266msgstr ""
     267
     268#: frontend-uploader.php:1352
     269msgid "Your post was successfully submitted!"
     270msgstr ""
     271
     272#: frontend-uploader.php:1356
     273msgid "There was an error with your submission"
     274msgstr ""
     275
     276#: frontend-uploader.php:1360
     277msgid "Your submission failed spam checks"
     278msgstr ""
     279
     280#: frontend-uploader.php:1387
     281msgid "Security check failed!"
     282msgstr ""
     283
     284#: frontend-uploader.php:1390
     285msgid "This kind of file is not allowed. Please, try again selecting other file."
     286msgstr ""
     287
     288#: frontend-uploader.php:1394
     289msgid "This post type is not allowed."
     290msgstr ""
     291
     292#: frontend-uploader.php:1397
     293msgid "Couldn't upload the file due to server error"
     294msgstr ""
     295
     296#: frontend-uploader.php:1401
     297msgid "Couldn't create the post due to server error"
     298msgstr ""
     299
     300#: frontend-uploader.php:1404
     301msgid "The file you tried to upload looks suspicious. This incident will be reported."
     302msgstr ""
  • frontend-uploader/trunk/readme.txt

    r1971315 r2008848  
    33Donate link: https://www.paypal.me/RinatK
    44Tags: frontend, image, images, media, uploader, upload, video, audio, photo, photos, picture, pictures, file, user generated content, ugc, frontend upload
    5 Requires at least: 4.1
     5Requires at least: 4.6
     6Requires PHP: 5.4
    67Tested up to: 5.0
    78Stable tag: 1.3.2
Note: See TracChangeset for help on using the changeset viewer.