Download the PHP package webdevstudios/wds-wp-rest-api-connect-ui without Composer

On this page you can find all versions of the php package webdevstudios/wds-wp-rest-api-connect-ui. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package wds-wp-rest-api-connect-ui

WDS WP REST API Connect UI

Contributors: WebDevStudios
Donate link: http://webdevstudios.com
Tags:
Requires at least: 4.4.2
Tested up to: 4.4.2
Stable tag: 0.2.5
License: GPLv2
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Description

Provides UI for connecting from one WordPress installation to another via the WordPress REST API over OAuth1. This plugin is a UI wrapper for WDS WP REST API Connect.

Caveats:

Usage:

Once you've created a successful API connection via the Settings screen, you can use the the plugin's API helper function/filter. If the connection is successful, The helper function and filter both return a WDS_WP_REST_API\OAuth1\Connect object (example usage here), which you can use to make your API requests.

The filter is an alternative to the helper function provided so that you can use in other plugins or themes without having to check if function_exists. To do that, simply use $api = apply_filters( 'wds_rest_connect_ui_api_object', false );. If the wds_rest_connect_ui_api_object function isn't available, you're original value, false will be returned. Whether using the function or the filter, you'll want to check if the $api object returned is a WP_Error object (is_wp_error) or a WDS_WP_REST_API_Connect object (is_a( $api, 'WDS_WP_REST_API\OAuth1\Connect' )) before proceeding with making requests.

Installation

Manual Installation

  1. Upload the entire /wds-rest-connect-ui directory to the /wp-content/plugins/ directory.
  2. Run composer install inside the /wp-content/plugins/wds-rest-connect-ui directory.
  3. Activate WDS WP REST API Connect UI through the 'Plugins' menu in WordPress.
  4. Update the connection settings.

To avoid step 2, download this zip, unzip the file and follow steps 1, 3, and 4.

Frequently Asked Questions

Screenshots (a bit out of date since 0.2.0)

  1. Settings Settings

  2. After settings are saved, authentication is required. After settings are saved, authentication is required.

  3. Successful authentication notice which demonstrates available routes. Successful authentication notice which demonstrates available routes.

Changelog

0.2.5

0.2.4

0.2.3

0.2.2

0.2.1

0.2.0

0.1.0


All versions of wds-wp-rest-api-connect-ui with dependencies

PHP Build Version
Package Version
Requires php Version >5.3
webdevstudios/wds-wp-rest-api-connect Version ^v0.2.5
webdevstudios/cmb2 Version dev-master
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package webdevstudios/wds-wp-rest-api-connect-ui contains the following files

Loading the files please wait ....