Download the PHP package sitecrafting/gearlab-tools-wordpress without Composer

On this page you can find all versions of the php package sitecrafting/gearlab-tools-wordpress. 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 gearlab-tools-wordpress

GearLab Tools for WordPress

Travis CI build status

Integrate your WordPress site seamlessly with the GearLab Tools suite.

Installation

Installing Manually

Download the .zip archive of the latest release and place the extracted directory in wp-content/plugins. Activate the plugin from the WP Admin as you normally would.

Installing via Composer

Add the requirement to your composer.json:

NOTE: if you are tracking your WordPress codebase as one big monorepo, the --prefer-dist flag is important! It tells Composer to find and download the .zip archive instead of the full Git repository. Without this flag, it will create the plugin directory as a Git submodule and strange things will happen.

Usage

Getting Started

After installing and activating the plugin, go to the GearLab Tools section of the WP Admin. Enter your API Key, Collection ID, and Base URI as provided by GearLab. All settings are required.

Search

With GearLab Tools, you can override the default WordPress search functionality, which is extremely limited by default, with results from the ElasticSearch crawler that powers GearLab Search. To do this you must first enter your settings as described above, in Getting Started.

Once you've entered your GearLab Tools settings, but before enabling overriding WordPress search globally, you can test from the command line to see if you get results. To do this, run wp gearlab search <search term>. You should see a JSON object like this:

Once you've entered the settings above correctly, you're ready to enable GearLab Tools Search to override the default WP search. Enable the option Override default WordPress search and save the settings again. You should now see a basic search results page rendered by GearLab Tools whenever you perform a search.

Search Shortcode

Out of the box, you can use the [gearlab_search] shortcode in any RTE that supports shortcodes. This is the recommended approach for most cases.

However, basic searches (using WordPress's standard s query param), will still render your theme's default search.php template (assuming there is one). You can redirect global searches to the page your shortcode lives on in the Settings. Go to Settings > GearLab Tools and select Redirect searches to a specific page. Type the URI, e.g. /search, in the text box that appears.

Save your changes and you're good to go! Default searches will now redirect to your page. Note that all query string parameters will be preserved except s, which will be renamed to glt_search to avoid conflicting with WordPress's default functionality.

Overriding Timber templates

This plugin has special support for Timber.

To override how Timber renders your search results, you can add Theme Overrides. These are files that the plugin looks for in your theme and loads it if finds them, falling back to the plugin's own templates if it does not. These files are (relative to your theme root):

...where (Timber template path) is anywhere that Timber already knows to look for Twig templates. The most commone place is the templates or views directory in your theme.

Override the GearLab search.php template

Place something like the following in your theme at gearlab-tools/search.php (this example does not rely on Timber):

For more custom behavior, you can pass params directly to GearLab\search():

Search Autocomplete

In addition to providing superior search results, GearLab Tools also adds search autocomplete to your search template out of the box. You don't need to do anything to make this work, although you may want to override the default jquery-ui-autocomplete styles.

The only assumption this module makes about your HTML is that the search input can be found at the selector form [name="s"], i.e. a form element whose name attribute is "s". Because of how WordPress search is implemented, this assumption will hold true unless your search functionality is overriding WordPress core in an advanced way.

For the curious, this feature works by registering a custom WP REST route at /wp-json/gearlab/v2/completions and telling jquery-ui-autocomplete to grab its autocomplete suggestions from that route.

WP-CLI Custom Commands

The plugin implements WP-CLI commands for major GearLab Tools REST endpoints, such as search:

This will automatically use the credentials you've configured in the plugin settings.

Run wp gearlab --help to list subcommands.

As with other WordPress options, you can configure the plugin options with wp option:

Development

To build a new release, choose the Git tag name and run:

This will create a .tar.gz and a .zip archive which you can upload to a new release on GitHub.

If you have hub installed, the script will detect it and prompt you to optionally create a GitHub release directly.


All versions of gearlab-tools-wordpress with dependencies

PHP Build Version
Package Version
Requires composer/installers Version ~1.0
sitecrafting/gearlab-tools-php Version v2.0.0-rc.01
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 sitecrafting/gearlab-tools-wordpress contains the following files

Loading the files please wait ....