You are here

function imageapi_optimize_services_tinypng_info in Image Optimize (or ImageAPI Optimize) 7

Implements imageapi_optimize_TYPE_NAME_info().

File

services/tinypng.inc, line 10
tinypng API service integration.

Code

function imageapi_optimize_services_tinypng_info() {
  return array(
    'title' => t('TinyPNG API'),
    'description' => t('- Registration is required for using this service. Obtain your free API key <a href="@tinyPNG-registration">here</a>.', array(
      '@tinyPNG-registration' => 'https://tinypng.com/developers',
    )),
    'url' => 'http://tinypng.com',
    'weight' => 10,
  );
}