Plugin Directory

Changeset 1194197


Ignore:
Timestamp:
07/07/2015 03:40:11 PM (11 years ago)
Author:
markusklems
Message:

Update to 0.3.2

Location:
cloudwok-file-upload/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • cloudwok-file-upload/trunk/cloudwok.php

    r1194056 r1194197  
    44Plugin URI: http://www.cloudwok.com
    55Description: 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.1
     6Version: 0.3.2
    77Author: CloudWok
    88Author Email: [email protected]
     
    4646    $show_downloads = '';
    4747    $show_form = '';
    48     $show_powered_by_link = '';
     48    $show_powered_by_link = 'data-pby="n"';
    4949
    50     if(array_key_exists('show_uploads', $atts) && $atts['show_uploads']) {
     50    if(array_key_exists('show_uploads', $atts) && $atts['show_uploads'] == "True") {
    5151        $show_uploads = '<div class="cloudwok-upload-files"></div>';
    5252    }
    53     if(array_key_exists('show_downloads', $atts) && $atts['show_downloads']) {
     53    if(array_key_exists('show_downloads', $atts) && $atts['show_downloads']  == "True") {
    5454        $show_downloads = '<div class="cloudwok-download-files"></div>';
    5555    }
    56     if(array_key_exists('show_form', $atts) && $atts['show_form']) {
     56    if(array_key_exists('show_form', $atts) && $atts['show_form']  == "True") {
    5757        $show_form = '<div class="cloudwok-upload-message"></div>';
    5858    }
    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") {
    6060        $show_powered_by_link = 'data-pby="y"';
    6161    }
  • cloudwok-file-upload/trunk/readme.txt

    r1194056 r1194197  
    55Requires at least: 3.0.0
    66Tested up to: 4.2.2
    7 Stable tag: 0.3.1
     7Stable tag: 0.3.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    35353. 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).
    3636
    37 **Install the plug-in:**
     37**Install the plug-in via WordPress Plugin Directory:**
     38
     39The easiest way to install the plugin is through the "Plugins" menu item on the left-hand sidebar in your WordPress admin panel (see screenshots).
     401. Click on "Plugins"
     412. Click on "Add New"
     423. Search for the term "CloudWok"
     434. Select the CloudWok plugin and install it.
     445. Activate the plugin.
     45
     46**Manually install the plug-in:**
    3847
    39481. Upload `cloudwok.php` to the `/wp-content/plugins/` directory
     
    68771. File-upload form in a WordPress blog post view.
    69782. Shortcode that adds a file-upload form to a blog post.
     793. How to install the plugin via the WordPress plugin directory.
    7080
    7181== Changelog ==
    7282
     83= 0.3.2 =
     84Minor code changes.
    7385= 0.3.1 =
    7486Minor bugfixes.
Note: See TracChangeset for help on using the changeset viewer.