Skip to content

🖼 Helper plugins for specific use cases with Imagify. ☝️ TEST BEFORE USE! ☝️

License

Notifications You must be signed in to change notification settings

wp-media/imagify-helpers

Repository files navigation

Imagify Helpers

This repository hosts a number of plugins that target specific use cases for Imagify.

Imagify is known to be straight-forward and easy to use. However, sometimes a specific use case might require to alter its functionality.

The plugins in this repository provide solutions for some of the more common use cases that still seem too “edge case” to be included as options in Imagify’s user interface.

📋 TL;DR

  • Helper Plugins, like Imagify, require PHP 5.4+.
  • Helper Plugins by design don’t have version numbers, because we don’t maintain them on a regular basis.
  • Helper Plugins provide a sustainable way to customize Imagify’s behaviour, because they’re easier to spot than code snippets hidden in functions.php.
  • All plugins from this repository require Imagify to be up and running on your WordPress site. If you don’t use Imagify on your WordPress site, don’t install any of these plugins.
  • ☝️ Test before use! We don’t maintain all of these helper plugins actively at all times; some may target older versions of Imagify, or of other plugins. Some may even become outdated over time.

Table of contents

  1. General notes
  2. Minimum requirements
  3. How to use
  4. Naming conventions
  5. License
  6. Questions?

1. General notes

1.1. What are Helper Plugins?

We use the term “Helper Plugin” to describe a simple WordPress plugin that customizes the behaviour of Imagify in some sort of way.

A Helper Plugin usually consists of 1 single PHP file, wrapped in a folder, downloadable and installable as a regular ZIP.

💡 The main idea of Helper Plugins is easy-to-spot customizations.
Other than code snippets dumped into functions.php files, customizations that come wrapped in a little plugin can be spotted at a glance.

1.2. Whom are Helper Plugins for?

Helper Plugins are for all types of Imagify users:

  • People who just know how to upload a WordPress plugin
  • Technically well-versed site owners
  • Experienced developers
  • Our own support crew

Imagify users

If you don’t write code on a daily basis, you may want to contact our support team before using any of these plugins. (That is, unless you had contacted us already, and we sent you here.)

Developers

For developers and other code-savvy folk, many of Imagify’s functions, filters and action hooks used in these plugins can be found in the Imagify GitHub repository.

1.3. What are Helper Plugins not?

Helper Plugins are not works of elaborate software development. They are certainly not OOP, nor even class-based—just simple, procedural functions.

Helper Plugins are not versioned, changelogged, or maintained in the usual sense. We don’t guarantee that all Helper Plugins work with all Imagify versions at all times; however, when a Helper Plugin gets published, or updated, it usually sports a basic “Last tested with” section in the README file.

2. Minimum requirements

Helper Plugins fall under the same minimum requirements as Imagify: PHP 5.4 or greater, and WordPress 4.0 or greater at the moment of this writing (late 2018).

3. How to use

  • Each sub-folder in this repository contains at least 1 PHP file and 1 ZIP file.
  • PHP files are for code-savvy people to take a look at what the plugin does.
  • The ZIP file is the one you can download and install in WordPress.

💡 Need help with downloading?
Here’s an animated GIF on how to download a ZIP file from a GitHub repository._

3.1. Installation

  • Download one of the ZIP files from this repository.
  • Don’t unpack it! If your browser unpacks it automatically (can happen e.g. with Safari), you will have to re-ZIP it before proceeding.
  • Install the ZIP file through your WordPress admin interface: Go to Plugins→Add new→Upload, upload the ZIP file and activate the plugin.

3.2. Support

Feel free to use our dedicated support form!

4. Naming conventions

💡 Folder names help grouping a folder in a list of other folders.
That’s why folder names for these Helper Plugins start with a imagify- prefix, followed by feature and action keywords.

While file lists are not always sorted by name, it’s the default sort on GitHub and in many FTP clients.

Inside the WordPress plugin folder, a Helper Plugin should be listed next to Imagify itself, so a user or support agent can easily spot it.

In this GitHub repository, plugins that address the same feature (cache, lazyload, .htaccess rewrites …) are listed in groups, thus making it easier to skim the repo for a specific plugin.

4.1. Namespaces and functions

💡 We use PHP namespaces to improve readability.
Replacing verbose function prefixes with a PHP namespace can make actual function names more comprehensive, and our code remains easy to read.

It’s easy to over-engineer naming conventions, so we stick to a pragmatic rule of thumb when in doubt:

  1. Namespaces should be unique and consistent.
  2. Function names should be descriptive.

We rely on one consistent namespace for all Helper Plugins, and descriptive subnamespaces for each plugin:

namespace ImagifyPlugin\Helpers\{subnamespace(s)}

Or more specifically:

namespace ImagifyPlugin\Helpers\{feature}\{what_this_plugin_does}

Example:

namespace ImagifyPlugin\Helpers\optimization\auto;

function exclude_pdf() {
    // Exclude PDF files from being auto-optimized upon upload.
}
add_action( 'init', __NAMESPACE__ . '\exclude_pdf' );

4.2. Naming placeholder URLs, domains, values

There is one domain on the internet for the sole purpose of “illustrative examples in documents”: example.com

You can safely use it as anything you want:

https://example.com
http://example.com
https://sub-domain.example.com
[email protected]
ftp.example.com

💡 Placeholders must be replaced!
Whenever you see example.com in the code of a Helper Plugin, make sure you replace it with a custom value before you activate the plugin!

5. License

All plugins in this repository, like WordPress and Imagify, are licensed under GNU General Public License v2 or later.

6. Questions?

Shoot us a message at: imagify.io/contact/

About

🖼 Helper plugins for specific use cases with Imagify. ☝️ TEST BEFORE USE! ☝️

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •  

Languages