Plugin Directory

Changeset 616939


Ignore:
Timestamp:
10/24/2012 05:15:56 PM (13 years ago)
Author:
canitb
Message:

Version 0.9.1, small txt change3

Location:
soundcloud-sound-competition/trunk
Files:
10 edited

Legend:

Unmodified
Added
Removed
  • soundcloud-sound-competition/trunk/API/Soundcloud.php

    r606633 r616939  
    272272
    273273    /**
     274     * Retrieve access token through credentials flow
     275     *
     276     * @param string $username Username
     277     * @param string $password Password
     278     *
     279     * @return mixed
     280     *
     281     * @access public
     282     */
     283    function credentialsFlow($username, $password)
     284    {
     285        $postData = array(
     286            'client_id' => $this->_clientId,
     287            'client_secret' => $this->_clientSecret,
     288            'username' => $username,
     289            'password' => $password,
     290            'grant_type' => 'password'
     291        );
     292
     293        $options = array(CURLOPT_POST => true, CURLOPT_POSTFIELDS => $postData);
     294        $response = json_decode(
     295            $this->_request($this->getAccessTokenUrl(), $options),
     296            true
     297        );
     298
     299        if (array_key_exists('access_token', $response)) {
     300            $this->_accessToken = $response['access_token'];
     301
     302            return $response;
     303        } else {
     304            return false;
     305        }
     306    }
     307
     308    /**
    274309     * Retrieve access token
    275310     *
  • soundcloud-sound-competition/trunk/API/Soundcloud/Version.php

    r606633 r616939  
    1414
    1515    const MAJOR = 2;
    16     const MINOR = 2;
    17     const PATCH = 1;
     16    const MINOR = 3;
     17    const PATCH = 0;
    1818
    1919    /**
  • soundcloud-sound-competition/trunk/Classes/class-admin-remixers.php

    r612376 r616939  
    22/*
    33Plugin Name: SoundCloud Sound Competition
    4 Plugin URI: http://webhjelpen.no/wordpress-plugins/host-soundcloud-sound-contest-in-wordpress/
     4Plugin URI: http://webhjelpen.no/wordpress-plugin/soundcloud-sound-competition/
    55Description: Host your own Sound Contest integrated with SoundCloud, users connect easy with SoundCloud to choose track to add to your competition. Everything within your WordPress web site.
    66Author: Kenneth Berentzen
    7 Author URI: http://webhjelpen.no/wordpress-plugins/
     7Author URI: http://webhjelpen.no/wordpress-plugin
    88License: Copyright 2012  Kenneth Berentzen  (email : berentzen@gmail.com)
    99
  • soundcloud-sound-competition/trunk/Classes/class-admin-settings.php

    r612376 r616939  
    22/*
    33Plugin Name: SoundCloud Sound Competition
    4 Plugin URI: http://webhjelpen.no/wordpress-plugins/host-soundcloud-sound-contest-in-wordpress/
     4Plugin URI: http://webhjelpen.no/wordpress-plugin/soundcloud-sound-competition/
    55Description: Host your own Sound Contest integrated with SoundCloud, users connect easy with SoundCloud to choose track to add to your competition. Everything within your WordPress web site.
    66Author: Kenneth Berentzen
    7 Author URI: http://webhjelpen.no/wordpress-plugins/
     7Author URI: http://webhjelpen.no/wordpress-plugin
    88License: Copyright 2012  Kenneth Berentzen  (email : berentzen@gmail.com)
    99
  • soundcloud-sound-competition/trunk/Classes/class-helper-functions.php

    r612376 r616939  
    22/*
    33Plugin Name: SoundCloud Sound Competition
    4 Plugin URI: http://webhjelpen.no/wordpress-plugins/host-soundcloud-sound-contest-in-wordpress/
     4Plugin URI: http://webhjelpen.no/wordpress-plugin/soundcloud-sound-competition/
    55Description: Host your own Sound Contest integrated with SoundCloud, users connect easy with SoundCloud to choose track to add to your competition. Everything within your WordPress web site.
    66Author: Kenneth Berentzen
    7 Author URI: http://webhjelpen.no/wordpress-plugins/
     7Author URI: http://webhjelpen.no/wordpress-plugin
    88License: Copyright 2012  Kenneth Berentzen  (email : berentzen@gmail.com)
    99
  • soundcloud-sound-competition/trunk/Classes/class-installation.php

    r612376 r616939  
    22/*
    33Plugin Name: SoundCloud Sound Competition
    4 Plugin URI: http://webhjelpen.no/wordpress-plugins/host-soundcloud-sound-contest-in-wordpress/
     4Plugin URI: http://webhjelpen.no/wordpress-plugin/soundcloud-sound-competition/
    55Description: Host your own Sound Contest integrated with SoundCloud, users connect easy with SoundCloud to choose track to add to your competition. Everything within your WordPress web site.
    66Author: Kenneth Berentzen
    7 Author URI: http://webhjelpen.no/wordpress-plugins/
     7Author URI: http://webhjelpen.no/wordpress-plugin
    88License: Copyright 2012  Kenneth Berentzen  (email : berentzen@gmail.com)
    99
  • soundcloud-sound-competition/trunk/Classes/class-remixers.php

    r612376 r616939  
    22/*
    33Plugin Name: SoundCloud Sound Competition
    4 Plugin URI: http://webhjelpen.no/wordpress-plugins/host-soundcloud-sound-contest-in-wordpress/
     4Plugin URI: http://webhjelpen.no/wordpress-plugin/soundcloud-sound-competition/
    55Description: Host your own Sound Contest integrated with SoundCloud, users connect easy with SoundCloud to choose track to add to your competition. Everything within your WordPress web site.
    66Author: Kenneth Berentzen
    7 Author URI: http://webhjelpen.no/wordpress-plugins/
     7Author URI: http://webhjelpen.no/wordpress-plugin
    88License: Copyright 2012  Kenneth Berentzen  (email : berentzen@gmail.com)
    99
  • soundcloud-sound-competition/trunk/Classes/class-sc-connect.php

    r612376 r616939  
    22/*
    33Plugin Name: SoundCloud Sound Competition
    4 Plugin URI: http://webhjelpen.no/wordpress-plugins/host-soundcloud-sound-contest-in-wordpress/
     4Plugin URI: http://webhjelpen.no/wordpress-plugin/soundcloud-sound-competition/
    55Description: Host your own Sound Contest integrated with SoundCloud, users connect easy with SoundCloud to choose track to add to your competition. Everything within your WordPress web site.
    66Author: Kenneth Berentzen
    7 Author URI: http://webhjelpen.no/wordpress-plugins/
     7Author URI: http://webhjelpen.no/wordpress-plugin
    88License: Copyright 2012  Kenneth Berentzen  (email : berentzen@gmail.com)
    99
  • soundcloud-sound-competition/trunk/readme.txt

    r612418 r616939  
    1414== Description ==
    1515
    16 [Remix Competition hosted within WordPress Soundcloud Integrated ](http://webhjelpen.no/wordpress-plugin/soundcloud-sound-contest/) has been created to let you host your own remix competition without thinking about storage space, it's all integrated with SoundCloud so that all remixes are stored there.
     16[SoundCloud Sound Competition ](http://webhjelpen.no/wordpress-plugin/soundcloud-sound-competition/) has been created to let you host your own remix competition without thinking about storage space, it's all integrated with SoundCloud so that all remixes are stored there.
    1717
    1818Just make your own app in Soundcloud and add the parameters within your settings and you are good to go. You can chose a database slug when a competition has come to an end and you want to start another one, this creates a new competition. The plugin uses [OAuth2](https://api.soundcloud.com/oauth2/) so your Soundcloud account details are not stored for the
    1919plugin to gain access.
    2020
    21 Checkout the website - http://webhjelpen.no/wordpress-plugin/soundcloud-sound-contest/
     21Checkout the website - http://webhjelpen.no/wordpress-plugin/soundcloud-sound-competition/
    2222
    2323
     
    7373
    7474
     75== Upgrade Notice ==
     76
     77Just replace the new plugin files.
     78
    7579
    7680== Frequently Asked Questions ==
  • soundcloud-sound-competition/trunk/soundcloud-sound-competition.php

    r606633 r616939  
    22/*
    33Plugin Name: SoundCloud Sound Competition
    4 Plugin URI: http://webhjelpen.no/wordpress-plugins/host-soundcloud-sound-contest-in-wordpress/
     4Plugin URI: http://webhjelpen.no/wordpress-plugin/soundcloud-sound-competition/
    55Description: Host your own Sound Contest integrated with SoundCloud, users connect easy with SoundCloud to choose track to add to your competition. Everything within your WordPress web site.
    6 Version: 0.9
     6Version: 0.9.1
    77Author: Kenneth Berentzen
    8 Author URI: http://webhjelpen.no/wordpress-plugins/
     8Author URI: http://webhjelpen.no/wordpress-plugin
    99License: Copyright 2012  Kenneth Berentzen  (email : berentzen@gmail.com)
    1010
     
    2222        Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
    2323*/
     24
     25
    2426
    2527global $wpdb;
Note: See TracChangeset for help on using the changeset viewer.