Changeset 1194197
- Timestamp:
- 07/07/2015 03:40:11 PM (11 years ago)
- Location:
- cloudwok-file-upload/trunk
- Files:
-
- 2 edited
-
cloudwok.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cloudwok-file-upload/trunk/cloudwok.php
r1194056 r1194197 4 4 Plugin URI: http://www.cloudwok.com 5 5 Description: CloudWok enables you to let your website visitors upload files directly into a Dropbox, Google Drive, Amazon S3, Box.com, or other cloud storage folder that you own. 6 Version: 0.3. 16 Version: 0.3.2 7 7 Author: CloudWok 8 8 Author Email: [email protected] … … 46 46 $show_downloads = ''; 47 47 $show_form = ''; 48 $show_powered_by_link = ' ';48 $show_powered_by_link = 'data-pby="n"'; 49 49 50 if(array_key_exists('show_uploads', $atts) && $atts['show_uploads'] ) {50 if(array_key_exists('show_uploads', $atts) && $atts['show_uploads'] == "True") { 51 51 $show_uploads = '<div class="cloudwok-upload-files"></div>'; 52 52 } 53 if(array_key_exists('show_downloads', $atts) && $atts['show_downloads'] ) {53 if(array_key_exists('show_downloads', $atts) && $atts['show_downloads'] == "True") { 54 54 $show_downloads = '<div class="cloudwok-download-files"></div>'; 55 55 } 56 if(array_key_exists('show_form', $atts) && $atts['show_form'] ) {56 if(array_key_exists('show_form', $atts) && $atts['show_form'] == "True") { 57 57 $show_form = '<div class="cloudwok-upload-message"></div>'; 58 58 } 59 if(array_key_exists('show_powered_by_link', $atts) && $atts['show_powered_by_link'] ) {59 if(array_key_exists('show_powered_by_link', $atts) && $atts['show_powered_by_link'] == "True") { 60 60 $show_powered_by_link = 'data-pby="y"'; 61 61 } -
cloudwok-file-upload/trunk/readme.txt
r1194056 r1194197 5 5 Requires at least: 3.0.0 6 6 Tested up to: 4.2.2 7 Stable tag: 0.3. 17 Stable tag: 0.3.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 35 35 3. After you have created a Wok, you get a URL to an upload website, such as this: https://www.cloudwok.com/u/AneJ. The last four letters are your "wok id" (in this example: AneJ). 36 36 37 **Install the plug-in:** 37 **Install the plug-in via WordPress Plugin Directory:** 38 39 The easiest way to install the plugin is through the "Plugins" menu item on the left-hand sidebar in your WordPress admin panel (see screenshots). 40 1. Click on "Plugins" 41 2. Click on "Add New" 42 3. Search for the term "CloudWok" 43 4. Select the CloudWok plugin and install it. 44 5. Activate the plugin. 45 46 **Manually install the plug-in:** 38 47 39 48 1. Upload `cloudwok.php` to the `/wp-content/plugins/` directory … … 68 77 1. File-upload form in a WordPress blog post view. 69 78 2. Shortcode that adds a file-upload form to a blog post. 79 3. How to install the plugin via the WordPress plugin directory. 70 80 71 81 == Changelog == 72 82 83 = 0.3.2 = 84 Minor code changes. 73 85 = 0.3.1 = 74 86 Minor bugfixes.
Note: See TracChangeset
for help on using the changeset viewer.